Class
GridBeforeSpreadsheetExportEventArgs<TColumnType>

The event arguments for the event that is triggered before the export.

Definition

Namespace:Telerik.Blazor.Components.Grid

Assembly:Telerik.Blazor.dll

Type Parameters:

TColumnType

Syntax:

cs-api-definition
public abstract class GridBeforeSpreadsheetExportEventArgs<TColumnType> : ICancellableEventArgs where TColumnType : GridSpreadsheetExportColumn

Inheritance: objectGridBeforeSpreadsheetExportEventArgs<TColumnType>

Derived Classes: GridBeforeCsvExportEventArgsGridBeforeExcelExportEventArgs

Implements: ICancellableEventArgs

Constructors

GridBeforeSpreadsheetExportEventArgs()

Declaration

cs-api-definition
protected GridBeforeSpreadsheetExportEventArgs()

Properties

Columns

The list of columns to be exported.

Declaration

cs-api-definition
public List<TColumnType> Columns { get; set; }

Property Value

List<TColumnType>

Data

The data that will be exported.

Declaration

cs-api-definition
public IEnumerable<object> Data { get; set; }

Property Value

IEnumerable<object>

IsCancelled

Specifies whether the event is canceled and the built-in action is prevented.

Declaration

cs-api-definition
public bool IsCancelled { get; set; }

Property Value

bool

Implements ICancellableEventArgs.IsCancelled