Search
Arrow.Text Property
See Also
 



Gets or sets the text displayed over an arrow.

 Syntax

VB6  Copy Code

Public Property Get Text() As String
Public Property Let Text( _
    ByVal value As String _
)

C++  Copy Code

public:
BSTR get_Text ()
void put_Text (
    BSTR value
)

 Property Value

A string value. Initialized with FlowChart.ArrowText.

 Remarks

Gets or sets the text associated with the arrow. That text is painted as specified in TextStyle using the color set in TextColor.

This property defines arrow's main text content. You can add more text labels by calling the AddLabel method, and customize their position and appearance via the various members of ArrowLabel.

 See Also