New to Telerik UI for WPFStart a free 30-day trial

Provides various options for exporting data in CSV format.

Definition

Namespace:Telerik.Windows.Controls

Assembly:Telerik.Windows.Controls.GridView.dll

Syntax:

C#
public class GridViewCsvExportOptions : GridViewExportOptions

Inheritance: objectGridViewExportOptionsGridViewCsvExportOptions

Inherited Members GridViewExportOptions.EncodingGridViewExportOptions.CultureGridViewExportOptions.ItemsGridViewExportOptions.ShowColumnHeadersGridViewExportOptions.ShowColumnFootersGridViewExportOptions.ShowGroupFooters...

Constructors

Initializes a new instance of the GridViewCsvExportOptions class.

C#
public GridViewCsvExportOptions()

Fields

The column delimiter that will be used if other options are not specified.

C#
public static readonly string DefaultColumnDelimiter

The row delimiter that will be used if other options are not specified.

C#
public static readonly string DefaultRowDelimiter

Properties

The string that will separate cells.

The UseSystemCultureSeparator property overrides this one.

C#
public string ColumnDelimiter { get; set; }

Export format.

C#
public override ExportFormat Format { get; }

Overrides: GridViewExportOptions.Format

The string that will separate rows.

C#
public string RowDelimiter { get; set; }

If set, the RadGridView will use the system List Separator string, specified in Control Panel's Regional Options, to separate cells.

This property overrides the ColumnDelimiterr property.

C#
public bool UseSystemCultureSeparator { get; set; }