Method WriteBegin
WriteBegin(StringTableCollection, CsvWriter)
Called when writing the header row of the CSV file.
Each column that will be written to during WriteRow(SharedTableEntry, IList<StringTableEntry>, CsvWriter) should have
its column header written here using writer.WriteField("Header Title").
Declaration
public abstract void WriteBegin(StringTableCollection collection, CsvWriter csvWriter)
Parameters
| Type | Name | Description |
|---|---|---|
| StringTableCollection | collection | The collection being exported. |
| CsvWriter | csvWriter | Provides access to write to a CSV file. |