Spread Windows Forms 10.0 Product Documentation
RemoveItem Method
Example 


Index of item to remove
Removes the individual item specified by index from the list.
Syntax
'Declaration
 
Public Sub RemoveItem( _
   ByVal index As Integer _
) 
'Usage
 
Dim instance As ComboBoxCellType
Dim index As Integer
 
instance.RemoveItem(index)
public void RemoveItem( 
   int index
)

Parameters

index
Index of item to remove
Example
Dim cmbocell As New FarPoint.Win.Spread.CellType.ComboBoxCellType()
Dim list As New ListBox()
Dim dlg As DialogResult
cmbocell.Items() = (New String() {"One", "Two", "Three", "Four", "Five"})
FpSpread1.ActiveSheet.Cells(0, 0).CellType = cmbocell
dlg = MessageBox.Show("Do you want to remove the item?", "RemoveItem", MessageBoxButtons.YesNo)
If dlg = DialogResult.Yes Then
     cmbocell.RemoveItem(2)
End If
FarPoint.Win.Spread.CellType.ComboBoxCellType cmbocell = new FarPoint.Win.Spread.CellType.ComboBoxCellType();
DialogResult dlg;
cmbocell.Items = (new String[] {"One", "Two", "Three", "Four", "Five"});
fpSpread1.ActiveSheet.Cells[0, 0].CellType = cmbocell;
dlg = MessageBox.Show("Do you want to remove the item?", "RemoveItem", MessageBoxButtons.YesNo);
if (dlg == DialogResult.Yes)
{
     cmbocell.RemoveItem(2);
}
Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10

See Also

Reference

ComboBoxCellType Class
ComboBoxCellType Members

 

 


Copyright © GrapeCity, inc. All rights reserved.