FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread 名前空間 > SheetView クラス : ActiveRow プロパティ |
このプロパティが使用できるのは実行時のみです。存在していない列と行をアクティブにすることができません。アクティブ行が存在していない場合、このプロパティは null を返します。
FarPoint.Win.Spread.Column c; FarPoint.Win.Spread.Row r; fpSpread1.ActiveSheet.SetActiveCell(2, 2); c = fpSpread1.ActiveSheet.ActiveColumn; r = fpSpread1.ActiveSheet.ActiveRow; label1.Text = "The active column is " + fpSpread1.ActiveSheet.ActiveColumn.ToString(c) + " and the active row is " + fpSpread1.ActiveSheet.ActiveRow.ToString(r);
Dim c As FarPoint.Win.Spread.Column Dim r As FarPoint.Win.Spread.Row FpSpread1.ActiveSheet.SetActiveCell(2, 2) c = FpSpread1.ActiveSheet.ActiveColumn r = FpSpread1.ActiveSheet.ActiveRow Label1.Text = "The active column is " & FpSpread1.ActiveSheet.ActiveColumn.ToString(c) & " and the active row is " & FpSpread1.ActiveSheet.ActiveRow.ToString(r)