Spread for ASP.NET 10 Product Documentation
GetColumnIndex Method (FpSpread)
Example 


Returns the client column index for the specified column.
Syntax
'Declaration
 
Public Function GetColumnIndex( _
   ByVal column As Integer _
) As Integer
'Usage
 
Dim instance As FpSpread
Dim column As Integer
Dim value As Integer
 
value = instance.GetColumnIndex(column)
public int GetColumnIndex( 
   int column
)

Parameters

column
Example
This example uses the GetColumnIndex method.
FpSpread1.Sheets[0].RowCount = 30;
ListBox1.Items.Add(FpSpread1.GetColumnIndex(1).ToString());
ListBox1.Items.Add(FpSpread1.GetRowIndex(1, 1).ToString());
ListBox1.Items.Add(FpSpread1.GetPageIndex(11).ToString());
FpSpread1.Sheets(0).RowCount = 30
ListBox1.Items.Add(FpSpread1.GetColumnIndex(1).ToString())
ListBox1.Items.Add(FpSpread1.GetRowIndex(1, 1).ToString())
ListBox1.Items.Add(FpSpread1.GetPageIndex(11).ToString())
Requirements

Target Platforms: Windows 7, Windows 8, Windows 10, Windows Vista, Windows Server 2003, Windows Server 2008, Windows Server 2012, Windows XP Professional

See Also

Reference

FpSpread Class
FpSpread Members

 

 


Copyright © GrapeCity, inc. All rights reserved.