Search
Box.Text Property
See Also
 



Gets or sets the text to display inside this box.

 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.BoxText.

 Remarks

Sets text displayed in the box. Text can be aligned in different ways as pointed by the TextStyle property. HTML-like tags can be used to apply additional formatting to text if EnableStyledText is set to true.

This property defines node'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 NodeLabel.

 See Also