Sets the column index in the data model that corresponds to the specified column index in the sheet.
Parameters
- viewColumn
- Column index in the sheet
- modelColumn
- Column index in the data model
Return Value
Integer previous column index in the data model that is mapped to the specified column index in the sheet
This example sets the model column index in the data model that corresponds to the specified view column index on the sheet.
private void fpSpread1LeaveCell(object sender, FarPoint.Win.Spread.LeaveCellEventArgs e)
{
int i;
i = fpSpread1.ActiveSheet.SetModelColumnForViewColumn(e.Column, 1);
MessageBox.Show("The previous model column index mapped to the specified view column is row " + i.ToString());
}
Private Sub FpSpread1LeaveCell(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.LeaveCellEventArgs) Handles FpSpread1.LeaveCell
Dim i As Integer
i = FpSpread1.ActiveSheet.SetModelColumnForViewColumn(e.Column, 1)
MessageBox.Show("The previous model column index mapped to the specified view column is row " & i.ToString())
End Sub
Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10