Search
FlowChart.RequestDeleteTable Event
See Also
 



Raised before a table is deleted by the user, giving you a chance to cancel the operation.

 Syntax

VB6  Copy Code

Public Event RequestDeleteTable

 Event Data

Parameter

Type

Description

table

[input] reference to Table object

The table that the user is trying to delete.

delete

[output] boolean

Set to false to cancel the operation.

Dispatch ID: 27

 Remarks

Raised when the user is deleting a table, this event gives you the chance to cancel the operation. Set the delete parameter to false and the deletion shall be cancelled.

 See Also