System.Drawing.Printing.Margins
Specifies the dimensions of the margins of a printed page.
namespace System.Drawing.Printing
{
public class Margins : ICloneable
{
public int Left { get; set; }
public int Right { get; set; }
public int Top { get; set; }
public int Bottom { get; set; }
public Margins();
public Margins(int left, int right, int top, int bottom);
public object Clone();
public static bool operator ==(Margins m1, Margins m2);
public static bool operator !=(Margins m1, Margins m2);
}
}