OfficeIMO

API Reference

Class

CsvSaveOptions

Namespace OfficeIMO.CSV
Assembly OfficeIMO.CSV
Modifiers sealed

Options controlling how CSV content is serialized.

Inheritance

  • Object
  • CsvSaveOptions

Constructors

public CsvSaveOptions() #

Properties

public Char Delimiter { get; set; } #

Gets or sets the field delimiter character. Default is ,.

public String NewLine { get; set; } #

Gets or sets the newline sequence written between records. Default is NewLine.

public Boolean IncludeHeader { get; set; } #

Gets or sets whether to include the header row when writing. Default is true.

public CultureInfo Culture { get; set; } #

Gets or sets the culture used for formatting values. Defaults to InvariantCulture.

public Encoding Encoding { get; set; } #

Gets or sets the text encoding used when writing to files. Defaults to UTF-8 without BOM when omitted.