|  |  |  |  | 
#define E_CELL_TOGGLE_TYPE typedef ECellToggle; ECell* e_cell_toggle_new (int border,int n_states,GdkPixbuf **images);void e_cell_toggle_construct (ECellToggle *etog,int border,int n_states,GdkPixbuf **images);
typedef struct {
	ECell parent;
	int        border;
	int        n_states;
	GdkPixbuf **images;
	int        height;
} ECellToggle;ECell* e_cell_toggle_new (int border,int n_states,GdkPixbuf **images);
| border: | |
| n_states: | |
| images: | |
| Returns : | 
 | 
void e_cell_toggle_construct (ECellToggle *etog,int border,int n_states,GdkPixbuf **images);
Constructs the etog object with the border, n_staes, and images
arguments.
| etog: | a fresh ECellToggle object | 
| border: | number of pixels used as a border | 
| n_states: | number of states the toggle will have | 
| images: |  a collection of  | 
| <<< ECellCheckbox | E-text >>> |