DocumentAssemblyOptions Enumeration |
Specifies options controlling behavior of
DocumentAssembler while assembling a document.
Namespace:
GroupDocs.Assembly
Assembly:
GroupDocs.Assembly (in GroupDocs.Assembly.dll) Version: 22.2
Syntax[FlagsAttribute]
public enum DocumentAssemblyOptions
<FlagsAttribute>
Public Enumeration DocumentAssemblyOptions
[FlagsAttribute]
public enum class DocumentAssemblyOptions
[<FlagsAttribute>]
type DocumentAssemblyOptions
Members
| Member name | Value | Description |
---|
| None | 0 |
Specifies default options.
|
| AllowMissingMembers | 1 |
Specifies that missing object members should be treated as null literals by the assembler. This option
affects only access to instance (that is, non-static) object members and extension methods. If this
option is not set, the assembler throws an exception when encounters a missing object member.
|
| UpdateFieldsAndFormulas | 2 |
Specifies that fields of result Word Processing documents and formulas of result Spreadsheet documents
should be updated by the assembler.
|
| RemoveEmptyParagraphs | 4 |
Specifies that the assembler should remove paragraphs becoming empty after template syntax tags are
removed or replaced with empty values.
|
| InlineErrorMessages | 8 |
Specifies that the assembler should inline template syntax error messages into output documents.
If this option is not set, the assembler throws an exception when encounters a syntax error.
|
See Also