MESCIUS SPREAD for Windows Forms 15.0J
Width プロパティ (ComboDropDownInfo)
使用例 

ドロップダウンの幅を取得または設定します。
構文
'宣言
 
Public Property Width As Integer
public int Width {get; set;}

プロパティ値

ドロップダウンの幅。
例外
例外解説
System.ArgumentOutOfRangeException
System.ArgumentOutOfRangeException引数の値が、呼び出されたメソッドで定義されている許容範囲外である場合にスローされる例外。
System.ArgumentOutOfRangeException
解説

サイズ変更するかドロップダウンの幅と高さを設定することによってドロップダウンの幅が設定されている場合、ドロップダウンの幅は変わりません。

AutoWidthがtrueで、Widthが設定されている場合、ドロップダウンの幅はAutoWidthと列幅の大きい方の設定になります。

AutoWidthがfalseで、Widthが設定されている場合、ドロップダウンの幅はWidthと列幅の大きい方の設定になります。

使用例
次のサンプルコードは、AutoWidthプロパティとWidthプロパティを設定します。
GrapeCity.Win.Spread.InputMan.CellType.GcComboBoxCellType gcCom = new GrapeCity.Win.Spread.InputMan.CellType.GcComboBoxCellType();
for (int i = 0; i < 10; i = i + 1)
{
    gcCom.Items.Add("t" + i.ToString());
}
gcCom.ListColumns.Add("Column3");
gcCom.ListColumns.Add("Column4");
gcCom.ListColumns.Add("Column3");
gcCom.ListColumns.Add("Column4");
gcCom.DropDown.Width = 180;
gcCom.DropDown.AutoWidth = false;
fpSpread1.ActiveSheet.Cells[2, 0].CellType = gcCom;
fpSpread1.ActiveSheet.Columns[0].Width = 120;
Dim gcCom As New GrapeCity.Win.Spread.InputMan.CellType.GcComboBoxCellType()
Dim i As Integer = 0
While i < 10
    gcCom.Items.Add("t" + i.ToString())
End While

gcCom.ListColumns.Add("Column3")
gcCom.ListColumns.Add("Column4")
gcCom.ListColumns.Add("Column3")
gcCom.ListColumns.Add("Column4")
gcCom.DropDown.Width = 180
gcCom.DropDown.AutoWidth = False
fpSpread1.ActiveSheet.Cells(2, 0).CellType = gcCom
fpSpread1.ActiveSheet.Columns(0).Width = 120
参照

ComboDropDownInfo クラス
ComboDropDownInfo メンバ

 

 


© MESCIUS inc. All rights reserved.