DocumentFormat Enum
Lists file document formats.
Namespace: DevExpress.AspNetCore.RichEdit
Assembly: DevExpress.AspNetCore.RichEdit.v24.1.dll
NuGet Package: DevExpress.AspNetCore.RichEdit
Declaration
public enum DocumentFormat
Members
Name | Description |
---|---|
PlainText
|
The plain text format. |
Rtf
|
The rich text format. |
OpenXml
|
The OpenXML file format (aka default MS Office 2007 format or .docx) |
Remarks
DocumentFormat
values set the format parameter in the following Open methods:
- Open(String, DocumentFormat)
- Open(Func<Byte[]>, DocumentFormat, String)
- Open(Func<Stream>, DocumentFormat, String)
See Also