RichEditControl.CustomMarkDraw Event
In This Article
Fires before a custom mark is painted, and enables you to visualize the custom mark as required.
Namespace: DevExpress.Xpf.RichEdit
Assembly: DevExpress.Xpf.RichEdit.v14.2.dll
#Declaration
#Event Data
The CustomMarkDraw event's handler receives an argument of the CustomMarkDrawEventArgs type. The following properties provide information specific to this event:
Property | Description |
---|---|
Visual |
Provides access to information required to visualize custom marks. |
#Remarks
Use the SubDocument.CreateCustomMark method to create a mark, add it to the SubDocument.CustomMarks collection and visualize it by handling the CustomMarkDraw event.
See Also