Search
ArrowLabel.EnableWrap Property
See Also
 



Gets or sets a value indicating whether the label's text can be wrapped.

 Syntax

VB6  Copy Code

Public Property Get EnableWrap() As Boolean
Public Property Let EnableWrap( _
    ByVal value As Boolean _
)

C++  Copy Code

public:
bool get_EnableWrap ()
void put_EnableWrap (
    bool value
)

 Property Value

true to enable text wrapping; otherwise, false.

 Remarks

The label gets wrapped to a new line if it is longer than the MaxWidth value.

 See Also