Class PageSetup
Namespace: Aspose.Svg.Rendering
Assembly: Aspose.SVG.dll (25.5.0)
Represents a page setup object is used for configuration output page-set.
[ComVisible(true)]
public class PageSetup
Inheritance
Inherited Members
object.GetType() , object.MemberwiseClone() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()
Properties
AnyPage
Gets or sets all pages configuration in the the page-sequence.
public Page AnyPage { get; set; }
Property Value
AtPagePriority
Gets or sets Aspose.Svg.Rendering.AtPagePriority which will determine order of applying page size declarations. By default options will override css @page
rules https://www.w3.org/TR/CSS2/page.html#page-selectors
.
public AtPagePriority AtPagePriority { get; set; }
Property Value
FirstPage
Gets or sets the first page configuration.
public Page FirstPage { get; set; }
Property Value
LeftPage
Gets the Odd Page configuration.
public Page LeftPage { get; }
Property Value
RightPage
Gets the Even Page configuration.
public Page RightPage { get; }
Property Value
Sizing
Gets or sets the sizing type.
public SizingType Sizing { get; set; }
Property Value
Methods
SetLeftRightPage(Page, Page)
Sets the Left/Right page configuration.
public void SetLeftRightPage(Page leftPage, Page rightPage)
Parameters
leftPage
Page
The left page.
rightPage
Page
The right page.