Represents a supplementary label displayed by a flowchart node. New labels can be added to a node by calling its AddLabel method.
SyntaxVB6
Copy Code
|
|---|
Public Class NodeLabel |
C++
Copy Code
|
|---|
class NodeLabel |
RemarksThe position of a label is determined by where it is pinned relative to node's bounding box, and offset from the pin point, as set using SetCornerPosition, SetEdgePosition and SetCenterPosition methods. In addition, the HorizontalAlign and VerticalAlign properties specify whether the label is centered on its pin point or aligned to it.
You can let users arrange labels manually by setting the Behavior property of FlowChart to bhMoveLabels.
See Also