Click or drag to resize

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
Members
  Member nameValueDescription
Exportable1Explicly 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).
AsPlainText2 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.
NoExport4Explicly marks the field as having data that can NOT be exported. Used on fields which would normally be exportable.
ConvertTimezone8Apply field's Timezone specification during export. By default date/time value timezone conversion is applied per the platform's Excel ConvertTimezones feature.
RawValue16 Exports the field data without processing. For example, URL fields export their value, not a link constructed using the RootPath properties, etc.
AsHtml32 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