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

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 EventArgs.Empty

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; }
Property Value:

The context.

Gets the current element.

C#
public ExportElement Element { get; }
Property Value:

The element.

Gets the current export format.

C#
public ExportFormat Format { get; }
Property Value:

The format.

Gets or sets a value indicating whether special characters in the cell value will be escaped.

C#
public bool ShouldEncodeValue { get; set; }
Property Value:

true if special characters will be escaped; otherwise, false.

Gets or sets the value to be exported.

C#
public object Value { get; set; }
Property Value:

The value to be exported.

Gets the visual export parameters.

C#
public object VisualParameters { get; }
Property Value:

The visual parameters.