Class GridViewCsvExportOptions
Provides various options for exporting data in CSV format.
Inherited Members
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.GridView.dll
Syntax
public class GridViewCsvExportOptions : GridViewExportOptions
Constructors
GridViewCsvExportOptions()
Initializes a new instance of the GridViewCsvExportOptions class.
Declaration
public GridViewCsvExportOptions()
Fields
DefaultColumnDelimiter
The column delimiter that will be used if other options are not specified.
Declaration
public static readonly string DefaultColumnDelimiter
Field Value
System.String
|
DefaultRowDelimiter
The row delimiter that will be used if other options are not specified.
Declaration
public static readonly string DefaultRowDelimiter
Field Value
System.String
|
Properties
ColumnDelimiter
The string that will separate cells.
Declaration
public string ColumnDelimiter { get; set; }
Property Value
System.String
|
Format
Export format.
Declaration
public override ExportFormat Format { get; }
Property Value
ExportFormat
|
Overrides
RowDelimiter
The string that will separate rows.
Declaration
public string RowDelimiter { get; set; }
Property Value
System.String
|
UseSystemCultureSeparator
If set, the RadGridView will use the system List Separator string, specified in Control Panel's Regional Options, to separate cells.
Declaration
public bool UseSystemCultureSeparator { get; set; }
Property Value
System.Boolean
|