RichEditView.GetDocumentLayoutPosition(Point) Method
Obtains the page index and the layout position on the page for the specified point.
Namespace: DevExpress.XtraRichEdit
Assembly: DevExpress.RichEdit.v24.2.Core.dll
NuGet Package: DevExpress.RichEdit.Core
#Declaration
public PageLayoutPosition GetDocumentLayoutPosition(
Point point
)
#Parameters
Name | Type | Description |
---|---|---|
point | Point | A Point object that is the point in control coordinates. |
#Returns
Type | Description |
---|---|
Page |
A Page |
#Remarks
The PageLayoutPosition.Position obtained using the GetDocumentLayoutPosition method corresponds to layout element coordinates accessible via the LayoutElement.Bounds property.
#Example
When the mouse hovers over the RichEdit view, this code snippet displays the PageLayoutPosition.PageIndex of the page and the position PageLayoutPosition.Position under the mouse cursor on the page.
void richEditControl1_MouseMove(object sender, MouseEventArgs e)
{
PageLayoutPosition pos = richEditControl1.ActiveView.GetDocumentLayoutPosition(e.Location);
if (pos != null)
this.barStaticItem1.Caption = System.String.Format("Mouse is over page {0}, position {1}", pos.PageIndex, pos.Position);
else this.barStaticItem1.Caption = "";
}
#Related GitHub Examples
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the GetDocumentLayoutPosition(Point) method.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.