DOCX, DOC and RTF Formats only: Specifies whether or not bookmarks which extend over several characters are converted to SubTextParts. By default bookmarks are converted to DocumentTargets and when a bookmark extend over several characters, the first character is used as the target position.

Introduced: X13.

Syntax

public bool LoadSubTextParts { get; set; }
Public Property LoadSubTextParts() As Boolean

Examples

This example shows a simple variant of how to use the 'TXTextControl.LoadSettings.LoadSubTextParts' property. Here, it is set to 'true'.

TXTextControl.LoadSettings ls = new TXTextControl.LoadSettings();
//...
ls.LoadSubTextParts = true;
//...
Dim ls As TXTextControl.LoadSettings = New TXTextControl.LoadSettings()
'...
ls.LoadSubTextParts = True
'...

Limitations

DOCX, DOC and RTF Formats only.