Back to Devexpress

DocumentExporterOptions.ExportedDocumentProperties Property

officefileapi-devexpress-dot-xtrarichedit-dot-export-dot-documentexporteroptions-86a96033.md

latest6.1 KB
Original Source

DocumentExporterOptions.ExportedDocumentProperties Property

Gets or sets the document properties being exported.

Namespace : DevExpress.XtraRichEdit.Export

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

NuGet Package : DevExpress.RichEdit.Core

Declaration

csharp
public DocumentPropertyNames ExportedDocumentProperties { get; set; }
vb
Public Property ExportedDocumentProperties As DocumentPropertyNames

Property Value

TypeDescription
DocumentPropertyNames

One of the DocumentPropertyNames enumeration values indicating what document properties are specified.

|

Available values:

Show 25 items

NameDescription
None

Undefined name.

| | Category |

The DocumentProperties.Category property.

| | ContentStatus |

The DocumentProperties.ContentStatus property.

| | ContentType |

The DocumentProperties.ContentType property.

| | Created |

The DocumentProperties.Created property.

| | Creator |

The DocumentProperties.Creator property.

| | Description |

The DocumentProperties.Description property.

| | Identifier |

The DocumentProperties.Identifier property.

| | Keywords |

The DocumentProperties.Keywords property.

| | Language |

The DocumentProperties.Language property.

| | LastModifiedBy |

The DocumentProperties.LastModifiedBy property.

| | LastPrinted |

The DocumentProperties.LastPrinted property.

| | Modified |

The DocumentProperties.Modified property.

| | Revision |

The DocumentProperties.Revision property.

| | Subject |

The DocumentProperties.Subject property.

| | Title |

The DocumentProperties.Title property.

| | Version |

The DocumentProperties.Version property.

| | Application |

The DocumentProperties.Application property.

| | AppVersion |

The DocumentProperties.AppVersion property.

| | Company |

The DocumentProperties.Company property.

| | Manager |

The DocumentProperties.Manager property.

| | Template |

The DocumentProperties.Template property.

| | BuiltinProperties |

Built-in (core) properties contained in the DocumentProperties class.

| | CustomProperties |

Custom properties contained in the DocumentCustomProperties class.

| | All |

All document properties (built-in and custom).

|

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the ExportedDocumentProperties property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

winforms-richedit-save-a-document/CS/SaveDocument/Form1.cs#L58

csharp
options.ExportTheme = false;
options.ExportedDocumentProperties = DocumentPropertyNames.None;
break;

winforms-richedit-save-a-document/VB/SaveDocument/Form1.vb#L46

vb
options.ExportTheme = False
    options.ExportedDocumentProperties = DocumentPropertyNames.None
Case DialogResult.No

See Also

DocumentExporterOptions Class

DocumentExporterOptions Members

DevExpress.XtraRichEdit.Export Namespace