Search
TableNode.CellFromPoint Method (Point, Boolean)
See Also
 





Returns the row and column indices of the cell located at the specified point, taking into consideration the cells span.

Namespace: MindFusion.Diagramming.Wpf
Assembly: MindFusion.Diagramming.Wpf

 Syntax

C#  Copy Code

public TableNode.Cell CellFromPoint (
    Point point,
    bool isDiagramCoordinate
)

Visual Basic  Copy Code

Public Function CellFromPoint( _
    point As Point, _
    isDiagramCoordinate As Boolean _
) As TableNode.Cell

 Parameters

point

The point to check.

isDiagramCoordinate
true if the point is specified in logical diagram coordinates; false if the point is specified in WPF points.

 Return Value

true if a cell of this table contains the specified point; otherwise, false.

 See Also