コード例 #1
0
ファイル: RtfTableColumn.cs プロジェクト: rajeshwarn/Creek
 /// <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;
 }
コード例 #2
0
ファイル: RtfTableColumn.cs プロジェクト: rajeshwarn/Creek
 /// <summary>
 /// Initializes a new instance of ESCommon.Rtf.RtfTableColumn class.
 /// </summary>
 /// <param name="style">Default cell style.</param>
 public RtfTableColumn(RtfTableCellStyle style)
 {
     DefaultCellStyle = style;
 }