com.spire.xls.core
Interface IComboBoxes

All Known Implementing Classes:
ComboBoxCollection

public interface IComboBoxes


Method Summary
 IComboBoxShape addComboBox(int row, int column, int height, int width)
          Adds new item to the collection.
 IComboBoxShape get(int index)
          Returns single item from the collection.
 IComboBoxShape get(java.lang.String name)
           
 int getCount()
          Returns number of items in the collection.
 

Method Detail

getCount

int getCount()
Returns number of items in the collection.


get

IComboBoxShape get(int index)
Returns single item from the collection.

Parameters:
index - Item's index to get.
Returns:
Single item from the collection.

get

IComboBoxShape get(java.lang.String name)

addComboBox

IComboBoxShape addComboBox(int row,
                           int column,
                           int height,
                           int width)
Adds new item to the collection.

Parameters:
row - One-based row index of the top-left corner of the new item.
column - One-based column index of the top-left corner of the new item.
height - Height in pixels of the new item.
width - Width in pixels of the new item.
Returns:
Newly added item.