JRActivesizer

Properties   Methods   Events   Example

Changed(ByVal top As Single, ByVal left As Single, ByVal width As Single, ByVal height As Single, ByVal scalemode As Integer)

            every change of the marked object will fire this event.

            ico_einstellungen Return value:                        

top

left

top position in the current scalemode.

left position in the current scalemode.

width

the width in the current scalemode.

height

scalemode

the height in the current scalemode

the current scalemode

Example:            

Private Sub Sizer1_Changed(top As Single, left As Single, width As Single, height As Single, scalemode As Integer)
' ActiveSizer returns the aktual position, size and scalemode
mytext = "top " + Str$(top) + " left " + Str$(left) + " width " + Str$(width) + " height " + Str$(height) + " Scalemode " + Str$(scalemode)
Caption = mytext
End Sub