SelectRegionStretch
EventSelectRegionStretch (Event)
This event occurs when the SelectRegion window is changing and returns the handles of the selected objects that will be transformed
Syntax:
Private Sub object_SelectRegionStretch(Sender As System.Object, e As SelectRegionStretchEventArgs)
The SelectRegionStretch event syntax has the following parts:
Argument |
Data Type |
Description |
Sender |
System.Object |
The object that raises the event |
e.StretchHandles() |
Integer |
An array of integer handles of the selected objects |
e.xOldMin |
Single |
The x original coordinate of the bottom-left extent of the SelectRegion window |
e.yOldMin |
Single |
The y original coordinate of the bottom-left extent of the SelectRegion window |
e.xOldMax |
Single |
The x original coordinate of the top-right extent of the SelectRegion window |
e.yOldMax |
Single |
The y original coordinate of the top-right extent of the SelectRegion window |
e.xNewMin |
Single |
The x new changed coordinate of the bottom-left extent of the SelectRegion window |
e.yNewMin |
Single |
The y new changed coordinate of the bottom-left extent of the SelectRegion window |
e.xNewMax |
Single |
The x new changed coordinate of the top-right extent of the SelectRegion window |
e.yNewMax |
Single |
The x new changed coordinate of the top-right extent of the SelectRegion window |
e.fCancel |
Boolean |
This event trigger can be canceled by changing this parameter to true |