Search
Grid.GetHeaderFromPoint Method (PointF, RectangleF@, PointF)
See Also
 





Gets the Header that is located at the specified point.

Namespace: MindFusion.Diagramming.Lanes
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public Header GetHeaderFromPoint (
    PointF point,
    ref RectangleF headerBounds,
    PointF scrollPosition
)

Visual Basic  Copy Code

Public Function GetHeaderFromPoint( _
    point As PointF, _
    ByRef headerBounds As RectangleF, _
    scrollPosition As PointF _
) As Header

 Parameters

point

A Point instance specifying a point within the grid.

headerBounds

A Rect instance that receives the coordinates of the found header.

scrollPosition

When the headers are hooked this parameter should provide information about the current scroll position in the view.

 Return Value

The found Header object, or null (Nothing in Visual Basic) if there is no header located at the specified point.

 See Also