Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

BookmarkCollection.Item[String] Property

Gets the Bookmark object specified by its name.

Namespace: DevExpress.XtraRichEdit.API.Native

Assembly: DevExpress.RichEdit.v20.2.Core.dll

NuGet Package: DevExpress.RichEdit.Core

Declaration

Bookmark this[string name] { get; }

Parameters

Name Type Description
name String

A string specifying the bookmark name.

Property Value

Type Description
Bookmark

A Bookmark object which represents the bookmark with the specified name.

Remarks

This method searches the collection for the Bookmark object whose Bookmark.Name property’s value matches the parameter’s value. If no such object is found, the indexer returns null.

See Also