protected void Button1_Click(object sender, EventArgs e)
{
int rowIndex = FpSpread1.ActiveSheetView.ActiveRow;
int colIndex = FpSpread1.ActiveSheetView.ActiveColumn;
System.Diagnostics.Debug.WriteLine(string.Format("Cell[{0}, {1}]にフォーカス", rowIndex, colIndex));
}
Protected Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
Dim rowIndex As Integer = FpSpread1.ActiveSheetView.ActiveRow
Dim colIndex As Integer = FpSpread1.ActiveSheetView.ActiveColumn
System.Diagnostics.Debug.WriteLine(String.Format("Cell[{0}, {1}]にフォーカス", rowIndex, colIndex))
End Sub