CellControlCollection.AddComboBox
Contents
[
Hide
]AddComboBox(int, int, ICollection)
Adds a combobox to a specified cell at row column index.
public ComboBox AddComboBox(int row, int col, ICollection items)
Parameter | Type | Description |
---|---|---|
row | Int32 | Row index of cell. |
col | Int32 | Column index of cell. |
items | ICollection | The collection of the items contained in ComboBox. |
Return Value
The added combobox.
See Also
- class ComboBox
- class CellControlCollection
- namespace Aspose.Cells.GridDesktop
- assembly Aspose.Cells.GridDesktop
AddComboBox(int, int, ICollection, ICollection)
Adds a combobox to a specified cell at row column index.
public ComboBox AddComboBox(int row, int col, ICollection items, ICollection values)
Parameter | Type | Description |
---|---|---|
row | Int32 | Row index of cell. |
col | Int32 | Column index of cell. |
items | ICollection | The collection of the items contained in ComboBox. |
values | ICollection | The collection of the values contained in ComboBox. |
Return Value
The added combobox.
See Also
- class ComboBox
- class CellControlCollection
- namespace Aspose.Cells.GridDesktop
- assembly Aspose.Cells.GridDesktop
AddComboBox(string, ICollection)
Adds a combobox to a specified cell by cell name.
public ComboBox AddComboBox(string cellName, ICollection items)
Parameter | Type | Description |
---|---|---|
cellName | String | Name of grid cell. |
items | ICollection | The collection of the items contained in ComboBox. |
Return Value
The added combobox.
See Also
- class ComboBox
- class CellControlCollection
- namespace Aspose.Cells.GridDesktop
- assembly Aspose.Cells.GridDesktop
AddComboBox(string, ICollection, ICollection)
Adds a combobox to a specified cell by cell name.
public ComboBox AddComboBox(string cellName, ICollection items, ICollection values)
Parameter | Type | Description |
---|---|---|
cellName | String | Name of grid cell. |
items | ICollection | The collection of the items contained in ComboBox. |
values | ICollection | The collection of the values contained in ComboBox. |
Return Value
The added combobox.
See Also
- class ComboBox
- class CellControlCollection
- namespace Aspose.Cells.GridDesktop
- assembly Aspose.Cells.GridDesktop