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:
C#
public abstract class GridBeforeSpreadsheetExportEventArgs<TColumnType> : ICancellableEventArgs where TColumnType : GridSpreadsheetExportColumn
Inheritance: objectGridBeforeSpreadsheetExportEventArgs<TColumnType>
Derived Classes:
Implements:
Constructors
C#
protected GridBeforeSpreadsheetExportEventArgs()
Properties
The list of columns to be exported.
C#
public List<TColumnType> Columns { get; set; }
The data that will be exported.
C#
public IEnumerable<object> Data { get; set; }
Specifies whether the event is canceled and the built-in action is prevented.
C#
public bool IsCancelled { get; set; }
Implements: