Spread Windows Forms 12.0 Product Documentation
AutoHeight Property (ListHeaderPaneInfo)
Example 


GrapeCity.Win.PluginInputMan Assembly > GrapeCity.Win.Spread.InputMan.CellType Namespace > ListHeaderPaneInfo Class : AutoHeight Property
Gets or sets whether the height for ListHeaderPaneInfo is automatically adjusted.
Syntax
'Declaration
 
Public Property AutoHeight As Boolean
'Usage
 
Dim instance As ListHeaderPaneInfo
Dim value As Boolean
 
instance.AutoHeight = value
 
value = instance.AutoHeight
public bool AutoHeight {get; set;}

Property Value

true, if the ListHeaderPaneInfo height is automatically adjusted by ListHeaderPane.Font of ListHeaderPaneInfo; otherwise, false.
The default is true.
Example
This example sets properties for the list header pane in the drop-down list.
GrapeCity.Win.Spread.InputMan.CellType.GcComboBoxCellType gccombo = new GrapeCity.Win.Spread.InputMan.CellType.GcComboBoxCellType();
gccombo.Items.AddRange(new string[] { "Feta", "Havarti", "Swiss" });
gccombo.Items[0].BackColor = Color.Beige;
gccombo.Items[1].BackColor = Color.Cornsilk;
gccombo.Items[2].BackColor = Color.PeachPuff;
gccombo.ListHeaderPane.BackColor = Color.Blue;
gccombo.ListHeaderPane.Font = new Font("Calibri", 10);
gccombo.ListHeaderPane.Visible = true;
gccombo.ListHeaderPane.AutoHeight = false;
gccombo.ListHeaderPane.Height = 30;
fpSpread1.Sheets[0].Cells[1, 1].CellType = gccombo;
fpSpread1.Sheets[0].Columns[1].Width = 200;
fpSpread1.Sheets[0].Rows[1].Height = 40;
Dim gccombo As New GrapeCity.Win.Spread.InputMan.CellType.GcComboBoxCellType()
gccombo.Items.AddRange(New String() {"Feta", "Havarti", "Swiss"})
gccombo.Items(0).BackColor = Color.Beige
gccombo.Items(1).BackColor = Color.Cornsilk
gccombo.Items(2).BackColor = Color.PeachPuff
gccombo.ListHeaderPane.BackColor = Color.Blue
gccombo.ListHeaderPane.Font = New Font("Calibri", 10)
gccombo.ListHeaderPane.Visible = True
gccombo.ListHeaderPane.AutoHeight = False
gccombo.ListHeaderPane.Height = 30
fpSpread1.Sheets(0).Cells(1, 1).CellType = gccombo
fpSpread1.Sheets(0).Columns(1).Width = 200
fpSpread1.Sheets(0).Rows(1).Height = 40
See Also

Reference

ListHeaderPaneInfo Class
ListHeaderPaneInfo Members