IInsertionPanel.GetInsertionIndexes(Point, Int32, Int32) Method

Definition

Returns the index values of the items that the specified point is between.

public:
 void GetInsertionIndexes(Point position, [Out] int & first, [Out] int & second);
void GetInsertionIndexes(Point const& position, [Out] int & first, [Out] int & second);
public void GetInsertionIndexes(Point position, out int first, out int second);
Public Sub GetInsertionIndexes (position As Point, ByRef first As Integer, ByRef second As Integer)

Parameters

position
Point

The point for which to get insertion indexes.

first
Int32

int

The index of the item before the specified point.

second
Int32

int

The index of the item after the specified point.

Remarks

Call this method when handling a DragOver event to return the indices of the two items between which the DragOver is happening and where a potential drop and insertion would happen.

Applies to