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 Tree1.Items .SelectableItem(.FirstVisibleItem) = False End With
The following C++ sample makes not selectable the first visible item:
#include "Items.h" CItems items = m_tree.GetItems(); items.SetSelectableItem( items.GetFirstVisibleItem(), FALSE );
The following VB.NET sample makes not selectable the first visible item:
With AxTree1.Items .SelectableItem(.FirstVisibleItem) = False End With
The following C# sample makes not selectable the first visible item:
axTree1.Items.set_SelectableItem(axTree1.Items.FirstVisibleItem, false);
The following VFP sample makes not selectable the first visible item:
with thisform.Tree1.Items .DefaultItem = .FirstVisibleItem .SelectableItem(0) = .f. endwith