/// <summary>
 /// Initializes a new instance of the <see cref="RTFRowDefinition"/> struct.
 /// </summary>
 /// <param name="rowWidth">Width of the row.</param>
 /// <param name="alignment">The alignment.</param>
 /// <param name="rTFBorderSide">The RTFBorderSide.</param>
 /// <param name="borderWidth">Width of the border.</param>
 /// <param name="borderColor">Color of the border.</param>
 public RTFRowDefinition(int rowWidth, RTFAlignment alignment, RTFBorderSide rTFBorderSide, int borderWidth, Color borderColor, Padding padding)
 {
     this._padding       = padding;
     this._alignment     = alignment;
     this._rTFBorderSide = rTFBorderSide;
     this._borderWidth   = borderWidth;
     this._borderColor   = borderColor;
     this._rowWidth      = rowWidth * RTFBuilder.TWIPSA4 / 100;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="RTFRowDefinition"/> struct.
 /// </summary>
 /// <param name="rowWidth">Width of the row.</param>
 /// <param name="alignment">The alignment.</param>
 /// <param name="rTFBorderSide">The RTFBorderSide.</param>
 /// <param name="borderWidth">Width of the border.</param>
 /// <param name="borderColor">Color of the border.</param>
 public RTFRowDefinition(int rowWidth, RTFAlignment alignment, RTFBorderSide rTFBorderSide, int borderWidth, Color borderColor, Padding padding)
 {
     this._padding = padding;
     this._alignment = alignment;
     this._rTFBorderSide = rTFBorderSide;
     this._borderWidth = borderWidth;
     this._borderColor = borderColor;
     this._rowWidth = rowWidth * RTFBuilder.TWIPSA4 / 100;
 }
 public RTFCellDefinition(int cellwidth, RTFAlignment alignment, RTFBorderSide rTFBorderSide, int borderWidth, Color borderColor, Padding padding)
 {
     this._x = 0;
     this._padding = padding;
     this._alignment = alignment;
     this._rTFBorderSide = rTFBorderSide;
     this._borderWidth = borderWidth;
     this._borderColor = borderColor;
     this._cellWidth = (float) cellwidth / 100;
 }
Beispiel #4
0
 public RTFCellDefinition(int cellwidth, RTFAlignment alignment, RTFBorderSide rTFBorderSide, int borderWidth, Color borderColor, Padding padding)
 {
     this._x             = 0;
     this._padding       = padding;
     this._alignment     = alignment;
     this._rTFBorderSide = rTFBorderSide;
     this._borderWidth   = borderWidth;
     this._borderColor   = borderColor;
     this._cellWidth     = (float)cellwidth / 100;
 }