Spread Windows Forms 6.0 Product Documentation
ShowColumnHeaders Property
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.CellType Namespace > MultiColumnComboBoxCellType Class : ShowColumnHeaders Property


Glossary Item Box

Gets or sets whether column headers are displayed in the drop-down list.

Syntax

Visual Basic (Declaration) 
Public Property ShowColumnHeaders As Boolean
Visual Basic (Usage)Copy Code
Dim instance As MultiColumnComboBoxCellType
Dim value As Boolean
 
instance.ShowColumnHeaders = value
 
value = instance.ShowColumnHeaders
C# 
public bool ShowColumnHeaders {get; set;}

Example

This example sets which column to use for the edit portion of the combo box and which list column serves as the data column in the combo box.
C#Copy Code
FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType mc = new
FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType();
mc.DataSourceList = ds;
mc.ListResizeColumns = FarPoint.Win.Spread.CellType.ListResizeColumns.FitWidestItem;
mc.ListWidth = 860;
mc.ListBorderStyle = BorderStyle.Fixed3D;
mc.ShowColumnHeaders = false;
mc.ShowGridLines = false;
fpSpread1.ActiveSheet.Cells[0, 0].CellType = mc;
Visual BasicCopy Code
Dim mc As New FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType
mc.DataSourceList = ds
mc.ListResizeColumns = FarPoint.Win.Spread.CellType.ListResizeColumns.FitWidestItem
mc.ListWidth = 860
mc.ListBorderStyle = BorderStyle.Fixed3D
mc.ShowColumnHeaders = False
mc.ShowGridLines = False

FpSpread1.ActiveSheet.Cells(0, 0).CellType = mc

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

© 2002-2012 ComponentOne, a division of GrapeCity. All Rights Reserved.