Skip to main content
A newer version of this page is available. .

ASPxRichEdit.DocumentId Property

Gets or sets the document’s unique identifier.

Namespace: DevExpress.Web.ASPxRichEdit

Assembly: DevExpress.Web.ASPxRichEdit.v19.2.dll

Declaration

public string DocumentId { get; set; }

Property Value

Type Description
String

A string value that uniquely identifies the document.

Remarks

When a document is opened from a specific file path, the file path is automatically assigned to the DocumentId property.

If you provide custom logic for opening documents (from a database, for instance), you need to manually specify document identifiers using the DocumentId property of opened documents.

The DocumentId property’s value is used as a parameter of the server Document Manager’s DocumentManager.FindDocument method.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the DocumentId property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also