Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

SubDocument.GetDocBytes(DocumentRange, DocDocumentExporterOptions) Method

Exports the range’s content in DOC (Microsoft Word 97-2003 format) format and returns a byte array with this document.

Namespace: DevExpress.XtraRichEdit.API.Native

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

Declaration

byte[] GetDocBytes(
    DocumentRange range,
    DocDocumentExporterOptions options
)

Parameters

Name Type Description
range DocumentRange

The range to convert to DOC format.

options DocDocumentExporterOptions

An DocDocumentExporterOptions object used to specify export options.

Returns

Type Description
Byte[]

The document content in DOC format.

Remarks

If you work with a selection range, make sure that the GetDocBytes method is enclosed with DocumentRange.BeginUpdateDocument - DocumentRange.EndUpdateDocument method pair. Otherwise, an incorrect document model might be selected, and an exception “Error: specified document position or range belongs to other document or subdocument” is thrown.

To retrieve section settings, make sure that the range contains the last section’s paragraph. Otherwise, the section settings are reset to the default.

DocDocumentExporterOptions docOptions = richEditControl.Options.Export.Doc;
docOptions.ExportedDocumentProperties = DocumentPropertyNames.Creator | DocumentPropertyNames.Title | DocumentPropertyNames.Modified;

byte[] bytes = richEditControl.Document.GetDocBytes(richEditControl.Document.Range, docOptions);
File.WriteAllBytes(@"D:\testdoc.doc", bytes);
See Also