property Items.SelectPos as Variant
Selects items by position.

TypeDescription
Variant A long expression that indicates the position of item being selected, or a safe array that holds a collection of position of items being selected.  
Use the SelectPos property to select items by position. Use the SelectItem property to select an item giving its handle. The SelectPos property selects an item giving its general position. The ItemPosition property gives the relative position, or the position of the item in the child items collection.

The following VB sample selects the first item in the control:

Gantt1.Items.SelectPos = 0

The following VB sample selects first two items:

Gantt1.Items.SelectPos = Array(0, 1)

The following C++ sample selects the first item in the control:

m_gantt.GetItems().SetSelectPos( COleVariant( long(0) ) );

The following VB.NET sample selects the first item in the control:

With AxGantt1.Items
    .SelectPos = 0
End With

The following C# sample selects the first item in the control:

axGantt1.Items.SelectPos = 0;

The following VFP sample selects the first item in the control:

with thisform.Gantt1.Items
	.SelectPos = 0
endwith