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


Glossary Item Box

Gets or sets the width (in pixels) of the drop-down list.

Syntax

Visual Basic (Declaration) 
Public Property ListWidth As Integer
Visual Basic (Usage)Copy Code
Dim instance As ComboBoxCellType
Dim value As Integer
 
instance.ListWidth = value
 
value = instance.ListWidth
C# 
public int ListWidth {get; set;}

Property Value

Integer number of pixels for the width of the list box

Remarks

This sets the width of the drop-down list in pixels.

The possible settings are summarized here:

Setting Description
  0 Widest Item: The list becomes the width of the widest item.
 -1 Cell Width: The list becomes the width of the cell.
  n Pixel Width: Where n is any positive integer. The list becomes n number of pixels wide.     

Example

This example sets up a cell on the first sheet with a combo box with the first six months of the year and specifies the size of the portion displayed.
C#Copy Code
FarPoint.Win.Spread.CellType.ComboBoxCellType cmbocell = new FarPoint.Win.Spread.CellType.ComboBoxCellType();
cmbocell.Items = (new String[] {"January", "February", "March", "April", "May", "June"});
cmbocell.AcceptsArrowKeys = FarPoint.Win.SuperEdit.AcceptsArrowKeys.AllArrows;
cmbocell.AutoSearch = FarPoint.Win.AutoSearch.SingleCharacter;
cmbocell.Editable = true;
cmbocell.ListAlignment = FarPoint.Win.ListAlignment.Left;
cmbocell.ListOffset = 20;
cmbocell.ListWidth = 0;
cmbocell.MaxDrop = 4;
fpSpread1.Sheets[1].Cells[2,2].CellType = cmbocell;
Visual BasicCopy Code
Dim cmbocell As New FarPoint.Win.Spread.CellType.ComboBoxCellType()
cmbocell.Items = (new String() {"January", "February", "March", "April", "May", "June"})
cmbocell.AcceptsArrowKeys = FarPoint.Win.SuperEdit.AcceptsArrowKeys.AllArrows
cmbocell.AutoSearch = FarPoint.Win.AutoSearch.SingleCharacter
cmbocell.Editable = True
cmbocell.ListAlignment = FarPoint.Win.ListAlignment.Left
cmbocell.ListOffset = 20
cmbocell.ListWidth = 0
cmbocell.MaxDrop = 4
fpSpread1.Sheets(1).Cells(2,2).CellType = cmbocell

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.