PageSetupLeftMargin Property |
Namespace: Aspose.Words
DocumentBuilder builder = new DocumentBuilder(); PageSetup ps = builder.PageSetup; ps.PaperSize = Aspose.Words.PaperSize.Legal; ps.Orientation = Orientation.Landscape; ps.TopMargin = ConvertUtil.InchToPoint(1.0); ps.BottomMargin = ConvertUtil.InchToPoint(1.0); ps.LeftMargin = ConvertUtil.InchToPoint(1.5); ps.RightMargin = ConvertUtil.InchToPoint(1.5); ps.HeaderDistance = ConvertUtil.InchToPoint(0.2); ps.FooterDistance = ConvertUtil.InchToPoint(0.2); builder.Writeln("Hello world."); builder.Document.Save(ArtifactsDir + "PageSetup.PageMargins.doc");