Skip to main content

RichEditControl.OpenXmlBytes Property

Gets or sets the control’s content as an array of bytes in Office Open XML (Docx) format.

Namespace: DevExpress.Xpf.RichEdit

Assembly: DevExpress.Xpf.RichEdit.v23.2.dll

NuGet Package: DevExpress.Wpf.RichEdit

Declaration

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

Property Value

Type Description
Byte[]

An array of bytes representing the document in Docx format.

Remarks

Use the Document.OpenXmlBytes when operating at the document level, or the SubDocument.GetOpenXmlBytes to retrieve a document range in Docx format.

See Also