PowerTools SPREAD for Windows Forms 8.0J
DefaultStyle プロパティ (ColumnHeader)


列ヘッダのセルのデフォルトスタイル情報を取得または設定します。
構文
'Declaration
 
Public Property DefaultStyle As StyleInfo
'使用法
 
Dim instance As ColumnHeader
Dim value As StyleInfo
 
instance.DefaultStyle = value
 
value = instance.DefaultStyle
public StyleInfo DefaultStyle {get; set;}

プロパティ値

ヘッダのデフォルトスタイル情報を含むStyleInfoオブジェクト
次のサンプルコードは、列ヘッダ内のすべての列の背景色をDefaultStyleに基づいて設定します。
FarPoint.Win.Spread.ColumnHeader ch;
FarPoint.Win.Spread.StyleInfo style = new FarPoint.Win.Spread.StyleInfo();
ch = fpSpread1.ActiveSheet.ColumnHeader;
ch.RowCount = 3;
style.BackColor = Color.Teal;
ch.DefaultStyle = style;
Dim ch As FarPoint.Win.Spread.ColumnHeader
Dim style As New FarPoint.Win.Spread.StyleInfo()
ch = FpSpread1.ActiveSheet.ColumnHeader
ch.RowCount = 3
style.BackColor = Color.Teal
ch.DefaultStyle = style
参照

ColumnHeader クラス
ColumnHeader メンバ
SheetView.DefaultStyle プロパティ

 

 


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