ExportEndEventArgs
Class
Provides data for the ExportEnd event of both WinForms and WPF report viewers.
Definition
Namespace:Telerik.ReportViewer.Common
Assembly:Telerik.ReportViewer.WinForms.dll
Syntax:
C#
public sealed class ExportEndEventArgs : RenderingEndEventArgs
Inheritance: objectEventArgsRenderingEndEventArgsExportEndEventArgs
Inherited Members
Properties
DocumentBytes
byte[]
Gets or sets a byte array that contains the rendered report.
C#
public byte[] DocumentBytes { get; set; }
DocumentExtension
string
Gets the rendered report extension.
C#
public string DocumentExtension { get; }
DocumentName
string
Gets or sets the rendered report document name.
C#
public string DocumentName { get; set; }
Handled
bool
Gets or sets a value indicating whether the event was handled. If the event is handled the viewers' open SaveFileDialog operation will be suppressed.
C#
public bool Handled { get; set; }