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