Class CreateDocumentData
A class that represents the data needed to create a report document.
Inheritance
Inherited Members
Namespace: Telerik.ReportServer.Services.Models
Assembly: Telerik.ReportServer.Services.Models.dll
Syntax
public class CreateDocumentData
Constructors
CreateDocumentData()
Declaration
public CreateDocumentData()
Properties
DeviceInfo
Specifies the device information settings.
Declaration
public Dictionary<string, object> DeviceInfo { get; set; }
Property Value
System.Collections.Generic.Dictionary<System.String, System.Object>
|
Format
Specifies the document format in which the report should be rendered.
Declaration
public string Format { get; set; }
Property Value
System.String
|
ParameterValues
Specifies the actual values of the report parameters that will be used during the report rendering.
Declaration
public Dictionary<string, object> ParameterValues { get; set; }
Property Value
System.Collections.Generic.Dictionary<System.String, System.Object>
|
ReportId
Specifies the ID of the report which should be rendered.
Declaration
public string ReportId { get; set; }
Property Value
System.String
|