Search
Table.AddLabel Method
See Also
 



Adds the specified label to this table.

 Syntax

VB6  Copy Code

Public Sub AddLabel( _
    ByVal label As NodeLabel _
)

C++  Copy Code

public:
void AddLabel (
    NodeLabel* label
)

 Parameters

label

A NodeLabel instance.

 Remarks

Main text content of a table is specified via its Caption and Text properties. Call AddLabel if you need to display supplementary text labels, separate from the tabular data, such as identifiers or hints to the user.

Position of labels can be specified by calling methods such as SetCornerPosition. You can let users move labels interactively by setting the Behavior property of FlowChart to bhMoveLabels.

 See Also