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

OpenXmlDocumentExporterOptions.LimitBookmarkNameTo40Chars Property

Gets or sets whether bookmark names longer than 40 characters should be automatically renamed in the exported file.

Namespace: DevExpress.XtraRichEdit.Export

Assembly: DevExpress.RichEdit.v19.1.Core.dll

Declaration

[DefaultValue(true)]
public bool LimitBookmarkNameTo40Chars { get; set; }

Property Value

Type Default Description
Boolean **true**

True, to automatically rename bookmarks with name length of 40 characters or more; otherwise, false.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to LimitBookmarkNameTo40Chars
WinForms Controls RichTextEditDocumentExportOptions
.OpenXml.LimitBookmarkNameTo40Chars
Office File API RichEditDocumentExportOptions
.OpenXml.LimitBookmarkNameTo40Chars

Remarks

Microsoft Word has a restriction on the bookmark name length. It cannot be more than 40 characters. The LimitBookmarkNameTo40Chars property allows you to validate bookmark names and shorten the names which are longer than 40 chars. The bookmark name is truncated, and several digits are added to the end to ensure uniqueness.

See Also