|
SelectRegionStretch (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
|
Is the object that raises the event
|
e.StretchHandles()
|
Integer
|
An array of Integers for the handles of the selected objects
|
e.xOldMin
|
Single
|
Is the x original coordinate of the bottom left extend of the SelectRegion window
|
e.yOldMin
|
Single
|
Is the y original coordinate of the bottom left extend of the SelectRegion window
|
e.xOldMax
|
Single
|
Is the x original coordinate of the top right extend of the SelectRegion window
|
e.yOldMax
|
Single
|
Is the y original coordinate of the top right extend of the SelectRegion window
|
e.xNewMin
|
Single
|
Is the x new changed coordinate of the bottom left extend of the SelectRegion window
|
e.yNewMin
|
Single
|
Is the y new changed coordinate of the bottom left extend of the SelectRegion window
|
e.xNewMax
|
Single
|
Is the x new changed coordinate of the top right extend of the SelectRegion window
|
e.yNewMax
|
Single
|
Is the x new changed coordinate of the top right extend of the SelectRegion window
|
e.fCancel
|
Boolean
|
This event trigger can be canceled by changing this parameter to true
|
Example
|