Spread Windows Forms 7.0 Product Documentation
Index Property
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > DragMoveEventArgs Class : Index Property


Glossary Item Box

Gets the column or row index of the drag.

Syntax

Visual Basic (Declaration) 
Public ReadOnly Property Index As Integer
Visual Basic (Usage)Copy Code
Dim instance As DragMoveEventArgs
Dim value As Integer
 
value = instance.Index
C# 
public int Index {get;}

Property Value

Integer index of the column

Example

This example allows columns to be moved.
C#Copy Code
fpSpread1.AllowColumnMove = true;

fpSpread1.ColumnDragMove +=new FarPoint.Win.Spread.DragMoveEventHandler(fpSpread1ColumnDragMove);

private void fpSpread1ColumnDragMove(object sender, FarPoint.Win.Spread.DragMoveEventArgs e)
{
      e.View.Sheets(e.View.ActiveSheetIndex).Columns(e.Index).BackColor = Color.Yellow
}
Visual BasicCopy Code
FpSpread1.AllowColumnMove = True

Dim eh As FarPoint.Win.Spread.DragMoveEventHandler = AddressOf Fpspread1ColumnDragMove
AddHandler FpSpread1.ColumnDragMove, eh

Private Sub Fpspread1ColumnDragMove(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.DragMoveEventArgs) Handles FpSpread1.ColumnDragMove
      e.View.Sheets(e.View.ActiveSheetIndex).Columns(e.Index).BackColor = Color.Yellow
End Sub

Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8

See Also

© 2002-2014 ComponentOne, a division of GrapeCity. All Rights Reserved.