ParagraphFormatStyle Property |
Namespace: Aspose.Words
Document doc = new Document(); DocumentBuilder builder = new DocumentBuilder(doc); // Create a paragraph style and specify some formatting for it Style style = doc.Styles.Add(StyleType.Paragraph, "MyStyle1"); style.Font.Size = 24; style.Font.Name = "Verdana"; style.ParagraphFormat.SpaceAfter = 12; // Create a list and make sure the paragraphs that use this style will use this list style.ListFormat.List = doc.Lists.Add(ListTemplate.BulletDefault); style.ListFormat.ListLevelNumber = 0; // Apply the paragraph style to the current paragraph in the document and add some text builder.ParagraphFormat.Style = style; builder.Writeln("Hello World: MyStyle1, bulleted."); // Change to a paragraph style that has no list formatting builder.ParagraphFormat.Style = doc.Styles["Normal"]; builder.Writeln("Hello World: Normal."); builder.Document.Save(ArtifactsDir + "Lists.ParagraphStyleBulleted.doc");