|
|
|
SftTree.ShowTruncated Property |
Defines whether text is clipped or truncated using trailing '...'.
Syntax
VB.NET |
Boolean = object.ShowTruncated As Boolean |
||
VB |
Boolean = object.ShowTruncated As Boolean |
||
C#.NET |
bool Boolean = object.ShowTruncated; |
||
VC++ |
VARIANT_BOOL Boolean = object->ShowTruncated;
|
||
C |
HRESULT object->get_ShowTruncated(VARIANT_BOOL* Boolean); |
||
Delphi |
Boolean := object.ShowTruncated : WordBool; |
||
VB.NET |
object.ShowTruncated = Boolean As Boolean |
||
VB |
object.ShowTruncated = Boolean As Boolean |
||
C#.NET |
bool object.ShowTruncated = Boolean; |
||
VC++ |
VARIANT_BOOL object->ShowTruncated = Boolean;
|
||
C |
HRESULT object->put_ShowTruncated(VARIANT_BOOL Boolean); |
||
Delphi |
object.ShowTruncated := Boolean : WordBool; |
object
A SftTree object.
Boolean
Defines whether text is clipped or truncated using trailing '...'.
Boolean |
Description |
True |
Truncated text should be shown using trailing "...". |
False |
Truncated text is clipped. |
Comments
The ShowTruncated property defines whether text is clipped or truncated using trailing '...'.
The ShowTruncated property applies to all text components in a tree control. By setting it to True, text that is too large (horizontally) to fit in the space allocated will be truncated by showing trailing periods ("..."). If set to False, text will be clipped if too large and displayed in the available area.
See Also SftTree Object | Object Hierarchy