FarPoint.Web.Spread 名前空間 > ColumnHeader クラス : AutoText プロパティ |
'Declaration
Public Property AutoText As HeaderAutoText
public HeaderAutoText AutoText {get; set;}
コンポーネントに複数の列ヘッダがある場合は、AutoTextIndexプロパティで自動テキストを表示する列ヘッダ行を指定します。
このプロパティは、VisibleプロパティがTrueに設定されていない場合は効果がありません。コンポーネントが複数の列ヘッダを表示する場合、このプロパティは自動テキストを表示する行(AutoTextプロパティで指定)が非表示になっている場合は効果がありません。
行ヘッダが文字、数字、空白のいずれを表示するかを指定するには、RowHeaderオブジェクトのAutoTextプロパティを使用します。
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