Paragraph |
The ParagraphStyle type exposes the following members.
Name | Description | |
---|---|---|
ParagraphStyle | Initializes a new instance of the ParagraphStyle class. |
Name | Description | |
---|---|---|
BaseStyle | Gets or sets the style on which this style is based. | |
CharacterFormat | Gets or sets the character format. | |
ListFormat | Gets or sets the list format. | |
ParagraphFormat | Gets or sets the paragraph format. | |
StyleType |
Gets the type of the style.
(Overrides StyleStyleType) |
Name | Description | |
---|---|---|
Equals |
Determines whether the specified object is equal to this
ParagraphStyle instance.
(Overrides ObjectEquals(Object)) |
See Developer Guide: How the Styles Inheritance does work
using SautinSoft.Document; namespace Example { class Program { static void Main(string[] args) { // Get your free 100-day key here: // https://sautinsoft.com/start-for-free/ StyleInheritance(); } /// <summary> /// How the Styles Inheritance does work. /// </summary> /// <remarks> /// https://sautinsoft.com/products/document/help/net/developer-guide/styles-inheritance.php /// </remarks> static void StyleInheritance() { string docxPath = @"StylesInheritance.docx"; // Let's create document. DocumentCore dc = new DocumentCore(); dc.DefaultCharacterFormat.FontColor = Color.Blue; Section section = new Section(dc); section.Blocks.Add(new Paragraph(dc, new Run(dc, "The document has Default Character Format with 'Blue' color.", new CharacterFormat() { Size = 18 }))); dc.Sections.Add(section); // Create a new Paragraph and Style with 'Yellow' background. Paragraph par = new Paragraph(dc); ParagraphStyle styleYellowBg = new ParagraphStyle("YellowBackground"); styleYellowBg.CharacterFormat.BackgroundColor = Color.Yellow; dc.Styles.Add(styleYellowBg); par.ParagraphFormat.Style = styleYellowBg; par.Inlines.Add(new Run(dc, "This paragraph has Style 'Yellow Background' and it inherits 'Blue Color' from the document's DefaultCharacterFormat.")); par.Inlines.Add(new SpecialCharacter(dc, SpecialCharacterType.LineBreak)); Run run1 = new Run(dc, "This Run doesn't have a style, but it inherits 'Yellow Background' from the paragraph style and 'Blue Color' from the document's DefaultCharacterFormat."); run1.CharacterFormat.Italic = true; par.Inlines.Add(run1); par.Inlines.Add(new SpecialCharacter(dc, SpecialCharacterType.LineBreak)); Run run2 = new Run(dc, " This run has own Style with 'Green Color'."); CharacterStyle styleGreenText = new CharacterStyle("GreenText"); styleGreenText.CharacterFormat.FontColor = Color.Green; dc.Styles.Add(styleGreenText); run2.CharacterFormat.Style = styleGreenText; par.Inlines.Add(run2); Paragraph par2 = new Paragraph(dc); Run run3 = new Run(dc, "This is a new paragraph without a style. This is a Run also without style. " + "But they both inherit 'Blue Color' from their parent - the document."); par2.Inlines.Add(run3); section.Blocks.Add(par); section.Blocks.Add(par2); // Save our document into DOCX format. dc.Save(docxPath); // Open the result for demonstration purposes. System.Diagnostics.Process.Start(new System.Diagnostics.ProcessStartInfo(docxPath) { UseShellExecute = true }); } } }
Imports System Imports System.IO Imports SautinSoft.Document Module Sample Sub Main() StyleInheritance() End Sub ''' Get your free 100-day key here: ''' https://sautinsoft.com/start-for-free/ ''' <summary> ''' How the Styles Inheritance does work. ''' </summary> ''' <remarks> ''' https://sautinsoft.com/products/document/help/net/developer-guide/styles-inheritance.php ''' </remarks> Sub StyleInheritance() Dim docxPath As String = "StylesInheritance.docx" ' Let's create document. Dim dc As New DocumentCore() dc.DefaultCharacterFormat.FontColor = Color.Blue Dim section As New Section(dc) section.Blocks.Add(New Paragraph(dc, New Run(dc, "The document has Default Character Format with 'Blue' color.", New CharacterFormat() With {.Size = 18}))) dc.Sections.Add(section) ' Create a new Paragraph and Style with 'Yellow' background. Dim par As New Paragraph(dc) Dim styleYellowBg As New ParagraphStyle("YellowBackground") styleYellowBg.CharacterFormat.BackgroundColor = Color.Yellow dc.Styles.Add(styleYellowBg) par.ParagraphFormat.Style = styleYellowBg par.Inlines.Add(New Run(dc, "This paragraph has Style 'Yellow Background' and it inherits 'Blue Color' from the document's DefaultCharacterFormat.")) par.Inlines.Add(New SpecialCharacter(dc, SpecialCharacterType.LineBreak)) Dim run1 As New Run(dc, "This Run doesn't have a style, but it inherits 'Yellow Background' from the paragraph style and 'Blue Color' from the document's DefaultCharacterFormat.") run1.CharacterFormat.Italic = True par.Inlines.Add(run1) par.Inlines.Add(New SpecialCharacter(dc, SpecialCharacterType.LineBreak)) Dim run2 As New Run(dc, " This run has own Style with 'Green Color'.") Dim styleGreenText As New CharacterStyle("GreenText") styleGreenText.CharacterFormat.FontColor = Color.Green dc.Styles.Add(styleGreenText) run2.CharacterFormat.Style = styleGreenText par.Inlines.Add(run2) Dim par2 As New Paragraph(dc) Dim run3 As New Run(dc, "This is a new paragraph without a style. This is a Run also without style. " & "But they both inherit 'Blue Color' from their parent - the document.") par2.Inlines.Add(run3) section.Blocks.Add(par) section.Blocks.Add(par2) ' Save our document into DOCX format. dc.Save(docxPath) ' Open the result for demonstration purposes. System.Diagnostics.Process.Start(New System.Diagnostics.ProcessStartInfo(docxPath) With {.UseShellExecute = True}) End Sub End Module