'Declaration Public Overloads Function Get( _ ByVal row As Integer, _ ByVal column As Integer _ ) As Cell
Parameters
- row
- Row index of cell
- column
- Column index of cell
Return Value
Cell object for the specified row and column
'Declaration Public Overloads Function Get( _ ByVal row As Integer, _ ByVal column As Integer _ ) As Cell
Exception | Description |
---|---|
System.IndexOutOfRangeException | Specified row index is not valid; must be between zero and the total number of rows |
System.IndexOutOfRangeException | Specified column index is not valid; must be between zero and the total number of columns |
System.IndexOutOfRangeException | Specified row index is not valid; must be between zero and the total number of column header rows |
System.IndexOutOfRangeException | Specified column index is not valid; must be between zero and the total number of row header columns |
private void button1Click(object sender, System.EventArgs e) { FarPoint.Win.Spread.Cell cell; cell = fpSpread1.ActiveSheet.Cells.Get(0, 0); cell.BackColor = Color.Yellow; }
Private Sub Button1Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim cell As FarPoint.Win.Spread.Cell cell = fpSpread1.ActiveSheet.Cells.Get(0, 0) cell.BackColor = Color.Yellow End Sub