Bottom

PageMargins.Bottom property

Gets or sets the size of the bottom margin in inches or centimeters.

public double Bottom { get; set; }

Examples

Shows how to work with page margins.

var project = new Project(DataDir + "Project2.mpp");

// lets modify the default view
var margins = project.DefaultView.PageInfo.Margins;

// lets modify margins
margins.Left = 10d;
margins.Top = 10d;
margins.Right = 10d;
margins.Bottom = 10d;
margins.Borders = Border.OutsidePages;

project.Save(OutDir + "WorkWithPageMargins_out.mpp", SaveFileFormat.Mpp);

See Also