Raised when an user starts drawing a new table, just after the Table object is created.
SyntaxVB6
Copy Code
|
|---|
Public Event InitializeTable |
Event DataParameter | Type | Description |
|---|---|---|
table | [input] reference to a Table | The table that the user has started to draw. |
Dispatch ID: 94
RemarksThis event is raised immediately after the user starts drawing a new table. It lets you set the appearance properties of the table if you need their values to be different from the default ones defined in the FlowChart object, or if they don't have correspondent properties in the FlowChart class. The Initialize* events are intended only for initializing the appearance of objects. Do not alter the structure of the diagram from their handlers, i.e. do not create new items nor delete existing ones; if you do that, the control will be in an undefined state and will likely throw an exception at some point.
See Also