Contains data needed to handle the ElementExporting event.
Definition
Namespace:Telerik.Windows.Controls
Assembly:Telerik.Windows.Controls.GridView.dll
Syntax:
C#
public class GridViewElementExportingEventArgs : EventArgs
Inheritance: objectEventArgsGridViewElementExportingEventArgs
Inherited Members
Properties
Gets or sets boolean value indicating whether the event should be canceled or not.
C#
public bool Cancel { get; set; }
Gets the current context.
C#
public object Context { get; }
The context.
Gets the current element.
C#
public ExportElement Element { get; }
The element.
Gets the current export format.
C#
public ExportFormat Format { get; }
The format.
Gets or sets a value indicating whether special characters in the cell value will be escaped.
C#
public bool ShouldEncodeValue { get; set; }
true if special characters will be escaped; otherwise, false.
Gets or sets the value to be exported.
C#
public object Value { get; set; }
The value to be exported.
Gets the visual export parameters.
C#
public object VisualParameters { get; }
The visual parameters.