|
|
|
SftTree.LastDisplayColumn2 Property |
Returns the index of the last displayed column in the right pane.
Deprecated - Provided for compatibility with earlier versions only - Use ColumnsObj.LastDisplayColumn2 instead
Syntax
VB.NET |
DispColIndex = object.LastDisplayColumn2 As Short |
||
VB |
DispColIndex = object.LastDisplayColumn2 As Integer |
||
C#.NET |
short DispColIndex = object.LastDisplayColumn2; |
||
VC++ |
short DispColIndex = object->LastDisplayColumn2;
|
||
C |
HRESULT object->get_LastDisplayColumn2(short* DispColIndex); |
||
Delphi |
DispColIndex := object.LastDisplayColumn2 : Smallint; |
object
A SftTree object.
DispColIndex
Returns the index of the last displayed column in the right pane.
Comments
Deprecated - Provided for compatibility with earlier versions only - Use ColumnsObj.LastDisplayColumn2 instead
The LastDisplayColumn2 property returns the index of the last displayed column in the right pane.
The last column with a width greater than 0 (Column.Width) is considered the last displayed column. It is not necessarily displayed or visible if horizontal scrolling is in effect. A column can be made visible using the Column.MakeVisible method.
The first displayed column in the right pane can be determined using the ColumnsObj.FirstDisplayColumn2 property.
While most other methods, events and properties use real column numbers, the LastDisplayColumn2 property returns the display column number of the last displayed column. The display column number can be translated to a real column number using the ColumnsObj.ColumnIndex property.
The ColumnsObj.LastDisplayColumn property returns the zero-based column number of the last displayed column of the left pane in a split tree control.
See Also SftTree Object | Object Hierarchy