Search
WorkbookView.GetCellAt Method (Measure, Measure)
See Also
 






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

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

 Syntax

C#  Copy Code

public Cell GetCellAt (
    Measure x,
    Measure y
)

Visual Basic  Copy Code

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

 Parameters

x

The x-coordinate of the cell to get.

y

The y-coordinate of the cell to get.

 Return Value

A Cell object representing the cell at the specified location, or null (Nothing in Visual Basic) if there is not cell at this location.

 See Also