Skip to main content

CustomMarkDrawEventArgs.VisualInfoCollection Property

Provides access to information required to visualize custom marks.

Namespace: DevExpress.Xpf.RichEdit

Assembly: DevExpress.Xpf.RichEdit.v23.2.dll

NuGet Package: DevExpress.Wpf.RichEdit

Declaration

public CustomMarkVisualInfoCollection VisualInfoCollection { get; }

Property Value

Type Description
DevExpress.XtraRichEdit.Layout.Export.CustomMarkVisualInfoCollection

A DevExpress.XtraRichEdit.Layout.Export.CustomMarkVisualInfoCollection collection containing custom marks visual info.

Remarks

The UserData property of the CustomMarkVisualInfo object, contained in the collection, provides custom data that may be used to visualize custom marks. These data are attached when the custom mark is created.

To create a custom mark in the document, use the CustomMarkCollection.Create method.

To obtain a corresponding CustomMark object by its visual info, use the CustomMarkCollection.GetByVisualInfo method.

See Also