Back to Devexpress

RichEditDocumentServer.LoadDocumentTemplate(Byte[]) Method

officefileapi-devexpress-dot-xtrarichedit-dot-richeditdocumentserver-dot-loaddocumenttemplate-x28-system-dot-byte-x29.md

latest2.2 KB
Original Source

RichEditDocumentServer.LoadDocumentTemplate(Byte[]) Method

Loads a document template from a byte array.

Namespace : DevExpress.XtraRichEdit

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

NuGet Package : DevExpress.RichEdit.Core

Declaration

csharp
public virtual bool LoadDocumentTemplate(
    byte[] buffer
)
vb
Public Overridable Function LoadDocumentTemplate(
    buffer As Byte()
) As Boolean

Parameters

NameTypeDescription
bufferByte[]

A byte array that contains document data.

|

Returns

TypeDescription
Boolean

true if the document was successfully loaded; otherwise, false.

|

Remarks

A document template cannot be overwritten either in code or in the UI. The information about the original file location and its format is dropped. An attempt to save (i.e., overwrite) the original document invokes the Save As dialog.

The RichEditDocumentServer uses the built-in IFormatDetectorService service implementation to detect the loaded document’s format. If format detection fails, the RichEditDocumentServer.InvalidFormatException event fires.

Tip

Use the LoadDocument method overloads with explicit format definition to improve performance.

See Also

RichEditDocumentServer Class

RichEditDocumentServer Members

DevExpress.XtraRichEdit Namespace