Parameters
- column
- Model column index
Return Value
Integer column index in the sheet corresponding to the specified column in the model
FarPoint.Web.Spread.SheetView sv; sv = FpSpread1.ActiveSheetView; int i; i = sv.GetViewColumnFromModelColumn(0); Response.Write("The index is " + i.ToString());
Dim sv As FarPoint.Web.Spread.SheetView sv = FpSpread1.ActiveSheetView Dim i As Integer i = sv.GetViewColumnFromModelColumn(0) Response.Write("The index is " & i.ToString())