FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread 名前空間 > SheetView クラス : SetModelColumnForViewColumn メソッド |
'Declaration Public Overridable Function SetModelColumnForViewColumn( _ ByVal viewColumn As Integer, _ ByVal modelColumn As Integer _ ) As Integer
'使用法 Dim instance As SheetView Dim viewColumn As Integer Dim modelColumn As Integer Dim value As Integer value = instance.SetModelColumnForViewColumn(viewColumn, modelColumn)
public virtual int SetModelColumnForViewColumn( int viewColumn, int modelColumn )
例外 | 説明 |
---|---|
System.ArgumentOutOfRangeException | シートの指定された列が範囲外です。-1からシートの列の総数の間である必要があります。 |
System.ArgumentOutOfRangeException | モデルの指定された列が範囲外です。-1からモデルの列の総数の間である必要があります。 |
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