public ListParagraphProperties(TextMarkerProperties textMarkerProperties, TextRunProperties textRunProperties, bool firstLineInParagraph)
 {
     TextMarkerProperties     = textMarkerProperties;
     DefaultTextRunProperties = textRunProperties;
     FirstLineInParagraph     = firstLineInParagraph;
     TextDecorations          = new TextDecorationCollection();
 }
 public TerminalTextParagraphProperties()
 {
     this.flowDirection            = FlowDirection.LeftToRight;
     this.textAlignment            = TextAlignment.Left;
     this.lineHeight               = 0;
     this.firstLineInParagraph     = false;
     this.defaultTextRunProperties = new TerminalTextRunProperties();
     this.textWrapping             = TextWrapping.Wrap;
     this.textMarkerProperties     = null;
     this.indent = 0;
 }