Class PageSettings
Class for ToolbarSettings.
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Syncfusion.JavaScript.Models.ReportViewer
Assembly: Syncfusion.EJ.dll
Syntax
public class PageSettings : EJTagHelper
Constructors
PageSettings()
Declaration
public PageSettings()
Properties
Height
Specifies the height of paper in print layout.
Declaration
[JsonProperty("height")]
public double Height { get; set; }
Property Value
Type | Description |
---|---|
System.Double | The paper height. |
Margins
Specifies the paper margins of print layout.
Declaration
[JsonProperty("margins")]
public Margins Margins { get; set; }
Property Value
Type | Description |
---|---|
Margins | The paper margin. |
Orientation
Specifies the print layout orientation.
Declaration
[JsonProperty("orientation")]
[JsonConverter(typeof(StringEnumConverter))]
public Orientation Orientation { get; set; }
Property Value
Type | Description |
---|---|
Orientation | The Paper Orientation. |
PaperSize
Specifies the paper size of print layout.
Declaration
[JsonProperty("paperSize")]
[JsonConverter(typeof(StringEnumConverter))]
public PaperSize PaperSize { get; set; }
Property Value
Type | Description |
---|---|
PaperSize | The Paper Size. |
Width
Specifies the width of paper in print layout.
Declaration
[JsonProperty("width")]
public double Width { get; set; }
Property Value
Type | Description |
---|---|
System.Double | The paper width. |