Skip to main content

RichEditControl.OpenDocumentBytes Property

Gets or sets the document content as an array of bytes in Open Office Text (.odt) format.

Namespace: DevExpress.Xpf.RichEdit

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

NuGet Package: DevExpress.Wpf.RichEdit

Declaration

[Bindable(true)]
[Browsable(false)]
public byte[] OpenDocumentBytes { get; set; }

Property Value

Type Description
Byte[]

An array of bytes representing the OpenDocument Text (.odt) format.

Remarks

We recommend that you use the RichEditControl.OdtBytes property instead of the RichEditControl.OdtBytes property.

Use the Document.OdtBytes when operating at the document level, or the SubDocument.GetOdtBytes to retrieve a document range in Odt format.

See Also