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