[]
Gets or sets the width of the paper, in points, considered page orientation.
Use this property together with PaperHeight to determine the paper dimensions currently applied to the page.
public double PaperWidth { get; set; }
Public Property PaperWidth As Double
PageSettings pageSettings = new PageSettings();
pageSettings.PaperWidth = 595.0;
double paperWidth = pageSettings.PaperWidth;