TableTopPadding Property |
Namespace: Aspose.Words.Tables
Document doc = new Document(); DocumentBuilder builder = new DocumentBuilder(doc); Table table = builder.StartTable(); builder.InsertCell(); // Set the row formatting RowFormat rowFormat = builder.RowFormat; rowFormat.Height = 100; rowFormat.HeightRule = HeightRule.Exactly; // These formatting properties are set on the table and are applied to all rows in the table table.LeftPadding = 30; table.RightPadding = 30; table.TopPadding = 30; table.BottomPadding = 30; builder.Writeln("Contents of formatted row."); builder.EndRow(); builder.EndTable();