|
|
|
SftTreeColumns.LastDisplayColumn Property |
Returns the index of the last displayed column.
Syntax
VB.NET |
DispColIndex = object.LastDisplayColumn As Short |
||
VB |
DispColIndex = object.LastDisplayColumn As Integer |
||
C#.NET |
short DispColIndex = object.LastDisplayColumn; |
||
VC++ |
short DispColIndex = object->LastDisplayColumn;
|
||
C |
HRESULT object->get_LastDisplayColumn(short* DispColIndex); |
||
Delphi |
DispColIndex := object.LastDisplayColumn : Smallint; |
object
A SftTreeColumns object.
DispColIndex
Returns the index of the last displayed column.
Comments
The LastDisplayColumn property returns the index of the last displayed column.
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.
In a split tree control, the last displayed column of the left pane is returned.
The first displayed column can be determined using the ColumnsObj.FirstDisplayColumn property.
While most other methods, events and properties use real column numbers, the LastDisplayColumn 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.LastDisplayColumn2 property returns the zero-based column number of the last displayed column of the right pane in a split tree control.
See Also SftTreeColumns Object | Object Hierarchy