Raised before a box is deleted by the user, giving you a chance to cancel the operation.
SyntaxVB6
Copy Code
|
|---|
Public Event RequestDeleteBox |
Event DataParameter | Type | Description |
|---|---|---|
box | [input] reference to Box object | The box that the user is trying to delete. |
delete | [output] boolean | Set it to false to cancel the operation. |
Dispatch ID: 9
RemarksRaised when the user is deleting a box, this event gives you the chance to cancel the operation. Set the delete parameter to false and the deletion shall be cancelled.
See Also