GrapeCity.Xaml.SpreadSheet.Data Namespace > Worksheet Class : FindFormulas Method |
'Declaration Public Function FindFormulas( _ ByVal row As Integer, _ ByVal column As Integer, _ ByVal rowCount As Integer, _ ByVal columnCount As Integer _ ) As Object(,)
Object[,] arr;
gcSpreadSheet1.Sheets[0].Cells[1, 1].Formula = "D1+E1";
arr = gcSpreadSheet1.Sheets[0].FindFormulas(0, 0, 2, 2);
listBox1.Items.Add(arr[0, 0].ToString());
Dim arr As [Object](,) GcSpreadSheet1.Sheets(0).Cells(1, 1).Formula = "D1+E1" arr = GcSpreadSheet1.Sheets(0).FindFormulas(0, 0, 2, 2) ListBox1.Items.Add(arr(0, 0).ToString())
Target Platforms: Windows Server 2012, Windows RT