A validation event that is raised while users draw new boxes.
SyntaxVB6
Copy Code
|
|---|
Public Event RequestCreateBox |
Event DataParameter | Type | Description |
|---|---|---|
box | [input] reference to Box object | The box that the user is trying to create. |
create | [output] boolean | Set it to false to cancel the operation. |
Dispatch ID: 13
RemarksRaised when the user is creating a box, this event gives you the chance to cancel the operation. Set the create parameter to false and the creation shall be cancelled.
See Also