JRActivesizer

Properties   Methods   Events   Example

Moved(ByVal top As Single, ByVal left As Single, ByVal scalemode As Integer, ByVal ResizedControl As Object)

            every change of the marked object position will fire this event.

            ico_einstellungen Return value:                        

top

top position in the current scalemode.

left

left position in the current scalemode.

scalemode

ResizedContrl

the current scalemode

the resized object

Example:            

Private Sub sizer1_moved(top As Single, left As Single, scalemode As Integer, movedcontrol As Object)
  mytext = "Moved to " + "top " + Str$(top) + " left " + Str$(left) + " Scalemode " + Str$(scalemode)
  Caption = mytext
End Sub

.