Ejemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of ESCommon.Rtf.RtfTableColumn class.
 /// </summary>
 /// <param name="width">Width in centimeters.</param>
 /// <param name="style">Default cell style.</param>
 public RtfTableColumn(float width, RtfTableCellStyle style)
 {
     Width            = TwipConverter.ToTwip(width, MetricUnit.Centimeter);
     DefaultCellStyle = style;
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of ESCommon.Rtf.RtfTableColumn class.
 /// </summary>
 /// <param name="style">Default cell style.</param>
 public RtfTableColumn(RtfTableCellStyle style)
 {
     DefaultCellStyle = style;
 }