Skip to main content

RichEditControl.CustomMarkDraw Event

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

public event CustomMarkDrawEventHandler CustomMarkDraw

#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
VisualInfoCollection 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