'Declaration Public Shadows Property AllowResize As Boolean
'Usage Dim instance As ComboDropDownInfo Dim value As Boolean instance.AllowResize = value value = instance.AllowResize
public new bool AllowResize {get; set;}
'Declaration Public Shadows Property AllowResize As Boolean
'Usage Dim instance As ComboDropDownInfo Dim value As Boolean instance.AllowResize = value value = instance.AllowResize
public new bool AllowResize {get; set;}
GrapeCity.Win.Spread.InputMan.CellType.GcComboBoxCellType gccombo = new GrapeCity.Win.Spread.InputMan.CellType.GcComboBoxCellType(); gccombo.DropDownStyle = ComboBoxStyle.DropDownList; gccombo.DropDown.AllowResize = false; gccombo.Items.AddRange(new string[] { "Feta", "Havarti", "Swiss" }); fpSpread1.Sheets[0].Cells[1, 1].CellType = gccombo;
Dim gccombo As New GrapeCity.Win.Spread.InputMan.CellType.GcComboBoxCellType() gccombo.DropDownStyle = ComboBoxStyle.DropDownList gccombo.DropDown.AllowResize = False gccombo.Items.AddRange(New String() {"Feta", "Havarti", "Swiss"}) fpSpread1.Sheets(0).Cells(1, 1).CellType = gccombo