FieldExportAttrs Enumeration |
Attributes specifying how an
IField is to be handled during an export (e.g. to Excel).
Namespace:
NetQuarry.Data
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax [FlagsAttribute]
public enum FieldExportAttrs
<FlagsAttribute>
Public Enumeration FieldExportAttrs
Members
| Member name | Value | Description |
---|
| Exportable | 1 | Explicly marks the field as having data that can be exported. Used on fields for which this would not normally be so (e.g. buttons or encrypted data). |
| AsPlainText | 2 |
Exports the field data (assumed to be HTML) as a reasonable plain text representation.
For fields known to contain HTML (currently those having Html or HtmlEditor, or
having HtmlContent set), this is the default behaviour unless the Excel feature's ExportHtmlAsHtml
value is set.
You can use the AsHtml attribute to force the raw HTML to be exported.
|
| NoExport | 4 | Explicly marks the field as having data that can NOT be exported. Used on fields which would normally be exportable. |
| ConvertTimezone | 8 | Apply field's Timezone specification during export. By default date/time value timezone conversion is applied per the platform's Excel ConvertTimezones feature. |
| RawValue | 16 |
Exports the field data without processing. For example, URL fields export their value, not a link constructed using
the RootPath properties, etc.
|
| AsHtml | 32 |
Exports the field data (assumed to be HTML) as-is without any attempt to convert to a plain text representation.
For fields known to contain HTML (currently those having Html or HtmlEditor, or
having HtmlContent set), the default behaviour is to perform a plain text conversion unless the Excel
feature's ExportHtmlAsHtml value is set.
You can use the AsPlainText attribute to force a plain text conversion to be exported.
|
See Also