FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread 名前空間 > SheetView クラス : ActiveRowIndex プロパティ |
'Declaration Public Property ActiveRowIndex As Integer
'使用法 Dim instance As SheetView Dim value As Integer instance.ActiveRowIndex = value value = instance.ActiveRowIndex
public int ActiveRowIndex {get; set;}
fpSpread1.ActiveSheet.SetActiveCell(2, 2); label1.Text = "The active column is " + fpSpread1.ActiveSheet.ActiveColumnIndex.ToString() + " and the active row is " + fpSpread1.ActiveSheet.ActiveRowIndex.ToString();
FpSpread1.ActiveSheet.SetActiveCell(2, 2) Label1.Text = "The active column is " & FpSpread1.ActiveSheet.ActiveColumnIndex.ToString() & " and the active row is " & FpSpread1.ActiveSheet.ActiveRowIndex.ToString()