Search
WorksheetView.GetCellAt Method (Int32, Int32)
See Also
 






Gets the cell at the specified coordinates, expressed relatively to the top/left of the control.

Namespace: MindFusion.Spreadsheet
Assembly: MindFusion.Spreadsheet.WinForms

 Syntax

C#  Copy Code

public Cell GetCellAt (
    int x,
    int y
)

Visual Basic  Copy Code

Public Function GetCellAt( _
    x As Integer, _
    y As Integer _
) As Cell

 Parameters

x

The x-coordinates of the cell to get.

y

The y-coordinates of the cell to get.

 Return Value

A Cell object representing the cell at the specified location.

 See Also