FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread 名前空間 > SheetView クラス : ActiveColumnIndex プロパティ |
'Declaration Public Property ActiveColumnIndex As Integer
'使用法 Dim instance As SheetView Dim value As Integer instance.ActiveColumnIndex = value value = instance.ActiveColumnIndex
public int ActiveColumnIndex {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()