Skip to main content

RichEditDocumentServer.OpenXmlBytes Property

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

Namespace: DevExpress.XtraRichEdit

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

NuGet Package: DevExpress.RichEdit.Core

Declaration

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

Property Value

Type Description
Byte[]

An array of bytes that contains document content in DOCX format.

Remarks

We recommend that you use the RichEditDocumentServer.DocxBytes property instead of the RichEditDocumentServer.OpenXmlBytes property.

Use the Document.DocxBytes when operating at the document level, or the SubDocument.GetDocxBytes to retrieve a document range in DOCX format.

See Also