Click or drag to resize

ExportFormat Enumeration

Enum specifying the export format.

Namespace:  Vovin.CmcLibNet.Export
Assembly:  Vovin.CmcLibNet (in Vovin.CmcLibNet.dll) Version: 1.0.7729.42686
Syntax
public enum ExportFormat
Members
  Member nameValueDescription
Xml0 Export to XML format (default). Fastest and most reliable.
Json1 Export to JSON format.
Html2 Export to HTML format. Note that the resulting HTML will be decorated with class attributes to allow custom formatting via CSS.
Text3 Export to plain text format.
Excel4 Export to Microsoft Excel xslx format.
GoogleSheets5 Export to Google Sheets. Requires Google account. Not implemented, may well be too slow anyway.
Event6 Just reads the data and emits a ExportProgressChanged event that you can subscribe to.

The RowValues property will contain Json-formatted data.

The filename argument is ignored when using this setting.

See Also