PowerTools SPREAD for ASP.NET 8.0J
AutoText プロパティ (ColumnHeader)

列ヘッダに文字または数字のどちらを表示するのか、あるいは空白にするかを取得または設定します。
構文
'Declaration
 
Public Property AutoText As HeaderAutoText
public HeaderAutoText AutoText {get; set;}

プロパティ値

HeaderAutoText設定
解説

コンポーネントに複数の列ヘッダがある場合は、AutoTextIndexプロパティで自動テキストを表示する列ヘッダ行を指定します。

このプロパティは、VisibleプロパティがTrueに設定されていない場合は効果がありません。コンポーネントが複数の列ヘッダを表示する場合、このプロパティは自動テキストを表示する行(AutoTextプロパティで指定)が非表示になっている場合は効果がありません。

行ヘッダが文字、数字、空白のいずれを表示するかを指定するには、RowHeaderオブジェクトのAutoTextプロパティを使用します。

次のサンプルコードは、列ヘッダが3行から成るように設定し、2番目の行の文字を列ヘッダに表示します。
FarPoint.Web.Spread.ColumnHeader colhdr;
colhdr = FpSpread1.ActiveSheetView.ColumnHeader;
// column header has three rows 
colhdr.RowCount = 3;
//  column header displays letters
colhdr.AutoText = FarPoint.Web.Spread.HeaderAutoText.Letters;
//  automatic text in second zero-index row 
colhdr.AutoTextIndex = 1;
Dim colhdr As FarPoint.Web.Spread.ColumnHeader
colhdr = FpSpread1.ActiveSheetView.ColumnHeader
' column header has three rows 
colhdr.RowCount = 3
' column header displays letters
colhdr.AutoText = FarPoint.Web.Spread.HeaderAutoText.Letters
' automatic text in second zero-index row
colhdr.AutoTextIndex = 1                                         
参照

ColumnHeader クラス
ColumnHeader メンバ
AutoTextIndex プロパティ
Visible プロパティ
AutoText プロパティ
HeaderAutoText 列挙体

開発者の手引き

ヘッダ

 

 


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