Пример #1
0
 internal Style(Font font, Color color, TabStopRuler tabStopRuler, bool wordWrap,
                int leftMargin, int rightMargin, int firstLineIndent)
 {
     this.font            = font;
     this.color           = color;
     this.tabStopRuler    = tabStopRuler;
     this.wordWrap        = wordWrap;
     this.leftMargin      = leftMargin;
     this.rightMargin     = rightMargin;
     this.firstLineIndent = firstLineIndent;
 }
Пример #2
0
 /// <inheritdoc />
 public override bool Equals(TabStopRuler other)
 {
     return(Equals(other as PixelTabStopRuler));
 }