PowerTools SPREAD for Windows Forms 8.0J
DisplayAlignment プロパティ


コントロールに入力フォーカスがないときに水平軸を表示するときのテキストの配置を取得または設定します。
構文
'Declaration
 
Public Property DisplayAlignment As DisplayAlignment
'使用法
 
Dim instance As GcTextBoxCellType
Dim value As DisplayAlignment
 
instance.DisplayAlignment = value
 
value = instance.DisplayAlignment
public DisplayAlignment DisplayAlignment {get; set;}

プロパティ値

コントロール内でのテキストの配置方法を指定する GcTextBox.DisplayAlignment 列挙値の1つ。
既定値は DisplayAlignment.None です。
解説
このプロパティは、文字間隔設定の異なるテキストを表示するために使用されます。この GcTextBox のテキストがこのコントロールの幅より長い場合、文字間隔効果はなくなります。
次のサンプルコードは、DisplayAlignment プロパティを使用します。
GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType inputcell1 = new GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType();
inputcell1.AcceptsArrowKeys = FarPoint.Win.SuperEdit.AcceptsArrowKeys.AllArrows;            
inputcell1.DisplayAlignment = GrapeCity.Win.Spread.InputMan.CellType.DisplayAlignment.Distributed;
AutoCompleteStringCollection acsc = new AutoCompleteStringCollection();
acsc.AddRange(new string[] { "One", "Two", "Three", "Four" });
inputcell1.AutoCompleteCustomSource  = acsc;
inputcell1.AutoCompleteMode = AutoCompleteMode.Suggest;
inputcell1.AutoCompleteSource = AutoCompleteSource.CustomSource;
fpSpread1.Sheets[0].Cells[1, 1].CellType = inputcell1;
Dim inputcell1 As New GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType
inputcell1.AcceptsArrowKeys = FarPoint.Win.SuperEdit.AcceptsArrowKeys.AllArrows
inputcell1.DisplayAlignment = GrapeCity.Win.Spread.InputMan.CellType.DisplayAlignment.Distributed
Dim acsc As New AutoCompleteStringCollection
acsc.AddRange(New String() {"One", "Two", "Three", "Four"})
inputcell1.AutoCompleteCustomSource = acsc
inputcell1.AutoCompleteMode = AutoCompleteMode.Suggest
inputcell1.AutoCompleteSource = AutoCompleteSource.CustomSource
FpSpread1.Sheets(0).Cells(1, 1).CellType = inputcell1
参照

GcTextBoxCellType クラス
GcTextBoxCellType メンバ

 

 


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