BeforeScale
EventBeforeScale (Event)
This event occurs before some objects are scaled with a scale base point and a scale magnifying factor
Syntax:
Private Sub object_BeforeScale(Sender As System.Object, e As BeforeScaleEventArgs)
The BeforeScale event syntax has the following parts:
Argument |
Data Type |
Description |
Sender |
System.Object |
The object that raises the event |
e.lHandles() |
Integer |
The handles of the objects to be scaled |
e.ScaleX |
Single |
The scale magnifying factor for the x coordinate |
e.ScaleY |
Single |
The scale magnifying factor for the y coordinate |
e.sx |
Single |
The coordinate x of the scale base point |
e.sY |
Single |
The coordinate y of the scale base point |
e.fCancel |
Boolean |
True when t.his event is canceled |