Type | Description | |||
Index as Long | A long expression that indicates the index of the item. | |||
ColIndex as Variant | A long expression that indicates the column's index, a string expression that indicates the column's key or the column's caption. | |||
AlignmentEnum | An AlignmentEnum expression that indicates the alignment of the cell's caption. |
The following VB sample right aligns the focused cell:
With List1.Items .CellHAlignment(.FocusItem, 0) = AlignmentEnum.RightAlignment End With
The following C++ sample right aligns the focused cell:
#include "Items.h" CItems items = m_list.GetItems(); items.SetCellHAlignment( items.GetFocusItem(), COleVariant( (long)0 ), 2 /*RightAlignment*/ );
The following VB.NET sample right aligns the focused cell:
With AxList1.Items .CellHAlignment(.FocusItem, 0) = EXLISTLib.AlignmentEnum.RightAlignment End With
The following C# sample right aligns the focused cell:
axList1.Items.set_CellHAlignment(axList1.Items.FocusItem, 0, EXLISTLib.AlignmentEnum.RightAlignment);
The following VFP sample right aligns the focused cell:
with thisform.List1.Items .CellHAlignment(.FocusItem,0) = 2 && RightAlignment endwith