/// <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; }
/// <summary> /// Initializes a new instance of ESCommon.Rtf.RtfTableColumn class. /// </summary> /// <param name="style">Default cell style.</param> public RtfTableColumn(RtfTableCellStyle style) { DefaultCellStyle = style; }