BookmarkCollection.Create(DocumentPosition, Int32, String) Method
In This Article
Creates a bookmark with the specified name for the range that starts at the specified position and has the specified length and adds it to the collection.
Namespace: DevExpress.XtraRichEdit.API.Native
Assembly: DevExpress.RichEdit.v24.2.Core.dll
NuGet Package: DevExpress.RichEdit.Core
#Declaration
Bookmark Create(
DocumentPosition start,
int length,
string name
)
#Parameters
Name | Type | Description |
---|---|---|
start | Document |
A Document |
length | Int32 | An integer that specifies the length of the range in the bookmark. |
name | String | A string that specifies the bookmark’s name. |
#Returns
Type | Description |
---|---|
Bookmark | A Bookmark object specifying the created bookmark. |
#Exceptions
Type | Description |
---|---|
Invalid |
Occurs if the document already contains a bookmark with the specified name. The Bookmark |
See Also