Reports for WPF
Style プロパティ (TableCell)

C1.C1Report.4 アセンブリ > C1.C1Preview 名前空間 > TableCell クラス : Style プロパティ
スタイルを取得します。
シンタックス
'宣言
 
Public ReadOnly Property Style As Style
public Style Style {get;}
解説

このプロパティの値は、セル自身の ambient と non-ambient の両方のスタイル属性、 およびオブジェクトの containment(包含)を介してセルの コンテンツの ambient 属性に影響します。

たとえば、Style.Spacing がテーブルのセルに無視されるため、 次のコードはテーブルの外観に影響しません。 RenderTable rt = new RenderTable(); rt.Cells[1, 2].Text = "My text."; rt.Cells[1, 2].Style.Spacing.All = "3mm"; それに対して、次のコードはセル内のテキストの周囲に 3mm の空白を追加します。 RenderTable rt = new RenderTable(); rt.Cells[1, 2].Text = "My text."; rt.Cells[1, 2].CellStyle.Spacing.All = "3mm";

参照

TableCell クラス
TableCell メンバ
CellStyle プロパティ