FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread 名前空間 > SheetView クラス : SetModelRowForViewRow メソッド |
'Declaration Public Overridable Function SetModelRowForViewRow( _ ByVal viewRow As Integer, _ ByVal modelRow As Integer _ ) As Integer
例外 | 説明 |
---|---|
System.ArgumentOutOfRangeException | シートの指定された行が範囲外です。-1から行の総数の間である必要があります。 |
System.ArgumentOutOfRangeException | モデルの指定された行が範囲外です。-1から行の総数の間である必要があります。 |
private void fpSpread1LeaveCell(object sender, FarPoint.Win.Spread.LeaveCellEventArgs e) { int i; i = fpSpread1.ActiveSheet.SetModelRowForViewRow(e.Row, 1); MessageBox.Show("The previous model row index mapped to the specified view row 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.SetModelRowForViewRow(e.Row, 1) MessageBox.Show("The previous model row index mapped to the specified view row is row " & i.ToString()) End Sub