JRActivesizer

Properties   Methods   Events   Example

Resized(ByVal width As Single, ByVal height As Single, ByVal scalemode As Integer, ByVal ResizedControl As Object)

            every change of the marked control size will fire this event.

            ico_einstellungen Return value:                        

width

in the current scalemode.

height

in the current scalemode.

scalemode

ResizedContrl

the current scalemode

the resized object

Example:            

Private Sub sizer1_resized(width As Single, height As Single, scalemode As Integer, ResizedControl As Object)

  mytext = "Resized " + "width " + Str$(width) + " height " + Str$(height) + " Scalemode " + Str$(scalemode)

  Caption = mytext

End Sub

.