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

DXRichEditCopyPasteOptions.TabInsertOptions Property

Gets or sets how to set tab stops in the inserted paragraph.

Namespace: DevExpress.Xpf.RichEdit

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

Declaration

[Browsable(false)]
public InsertOptions TabInsertOptions { get; set; }

Property Value

Type Description
InsertOptions

A InsertOptions enumeration value that specifies whose tab arrangement should be used for the inserted paragraph.

The default is InsertOptions.KeepSourceFormatting.

Property Paths

You can access this nested property as listed below:

Object Type Path to TabInsertOptions
RichEditControl
.CopyPasteOptions.TabInsertOptions

Remarks

Note

We recommend that you use the DXRichEditCopyPasteOptions.InsertOptions property to specify how to set tab stops in the inserted content.

Use the TabInsertOptions property to specify whether the inserted paragraph should retain its tab arrangement (accessible with the Paragraph.BeginUpdateTabs method) or apply the tab arrangement of the paragraph to which it is copied.

See Also