

| Type | Description | |||
| Item as HITEM | A long expression that indicates the handle of the item being selectable. | |||
| Boolean | A boolean expression that specifies whether the item is selectable. |
The following VB sample makes not selectable the first visible item:
With Gantt1.Items
.SelectableItem(.FirstVisibleItem) = False
End With
The following C++ sample makes not selectable the first visible item:
#include "Items.h" CItems items = m_gantt.GetItems(); items.SetSelectableItem( items.GetFirstVisibleItem(), FALSE );
The following VB.NET sample makes not selectable the first visible item:
With AxGantt1.Items
.SelectableItem(.FirstVisibleItem) = False
End With
The following C# sample makes not selectable the first visible item:
axGantt1.Items.set_SelectableItem(axGantt1.Items.FirstVisibleItem, false);
The following VFP sample makes not selectable the first visible item:
with thisform.Gantt1.Items .DefaultItem = .FirstVisibleItem .SelectableItem(0) = .f. endwith