PowerTools SPREAD for Windows Forms 8.0J
Font プロパティ (AlternatingRow)


この交互行のセルのテキストのデフォルトフォントを取得または設定します。
構文
'Declaration
 
Public Property Font As Font
'使用法
 
Dim instance As AlternatingRow
Dim value As Font
 
instance.Font = value
 
value = instance.Font
public Font Font {get; set;}

プロパティ値

フォント設定を含む Font オブジェクト
解説

交互行を作成するには、AlternatingRows.Countプロパティを設定して交互行パターンの数を指定してから、各パターンのプロパティを設定します。

次のサンプルコードは、交互行のフォントを指定します。
FarPoint.Win.Spread.AlternatingRow altrow;
altrow = fpSpread1.ActiveSheet.AlternatingRows[0];
fpSpread1.ActiveSheet.Cells[0, 0].Text = "Test";
fpSpread1.ActiveSheet.Cells[1, 0].Text = "For";
fpSpread1.ActiveSheet.Cells[2, 0].Text = "Fonts";
FontDialog FontDB = new FontDialog();
if (FontDB.ShowDialog() == DialogResult.OK)
{
altrow.Font = FontDB.Font;
}
Dim altrow As FarPoint.Win.Spread.AlternatingRow
altrow = FpSpread1.ActiveSheet.AlternatingRows(0)
FpSpread1.ActiveSheet.Cells(0, 0).Text = "Test"
FpSpread1.ActiveSheet.Cells(1, 0).Text = "For"
FpSpread1.ActiveSheet.Cells(2, 0).Text = "Fonts"
Dim FontDB As New FontDialog()
If (FontDB.ShowDialog() = DialogResult.OK) Then
altrow.Font = FontDB.Font
End If
参照

AlternatingRow クラス
AlternatingRow メンバ

開発者ガイド

1行おきのスタイル

 

 


© 2004-2015, GrapeCity inc. All rights reserved.