FormControlCollection Methods
A collection of form controls.Name | Description |
---|---|
AddButton(Cell, Single, Single) | Creates a button form control so that the top left corner of the button is located at the specified cell. |
AddButton(CellRange) | Creates a button form control at the specified cell range. |
AddButton(Single, Single, Single, Single) | Creates a button form control in the specified worksheet area. |
AddCheckBox(Cell, Single, Single) | Creates a checkbox form control so that the top left corner of the checkbox is located at the specified cell. |
AddCheckBox(CellRange) | Creates a check box form control at the specified cell range. |
AddCheckBox(Single, Single, Single, Single) | Creates a check box form control in the specified worksheet area. |
AddComboBox(Cell, Single, Single) | Creates a combo box form control so that the top left corner of the combo box is located at the specified cell. |
AddComboBox(CellRange) | Creates a combo box form control at the specified cell range. |
AddComboBox(Single, Single, Single, Single) | Creates a combo box form control in the specified worksheet area. |
AddGroupBox(Cell, Single, Single) | Creates a group box form control so that the top left corner of the group box is located at the specified cell. |
AddGroupBox(CellRange) | Creates a group box form control at the specified cell range. |
AddGroupBox(Single, Single, Single, Single) | Creates a group box form control in the specified worksheet area. |
AddLabel(Cell, Single, Single) | Creates a label form control so that the top left corner of the label is located at the specified cell. |
AddLabel(CellRange) | Creates a label form control at the specified cell range. |
AddLabel(Single, Single, Single, Single) | Creates a label form control in the specified worksheet area. |
AddListBox(Cell, Single, Single) | Creates a list box form control so that the top left corner of the list box is located at the specified cell. |
AddListBox(CellRange) | Creates a list box form control at the specified cell range. |
AddListBox(Single, Single, Single, Single) | Creates a list box form control in the specified worksheet area. |
AddRadioButton(Cell, Single, Single) | Creates a radio button form control so that the top left corner of the radio button is located at the specified cell. |
AddRadioButton(CellRange) | Creates a radio button form control at the specified cell range. |
AddRadioButton(Single, Single, Single, Single) | Creates a radio button form control so that the top left corner of the radio button is located at the specified cell. |
AddScrollbar(Cell, Single, Single) | Creates a scrollbar form control so that the top left corner of the scrollbar is located at the specified cell. |
AddScrollbar(CellRange) | Adds a scrollbar form control at a specified cell range. |
AddScrollbar(Single, Single, Single, Single) | Creates a scrollbar form control so that the top left corner of the scrollbar is located at the specified cell. |
AddSpinner(Cell, Single, Single) | Creates a spinner form control so that the top left corner of the spinner is located at the specified cell. |
AddSpinner(CellRange) | Adds a spinner form control at a specified cell range. |
AddSpinner(Single, Single, Single, Single) | Adds a spinner form control so that the top left corner of the spinner is located at the specified cell. |
Clear() | Removes all items from the collection. |
Contains(FormControl) | Determines whether the collection contains the specified item. |
CopyTo(Array, Int32) | Copies the elements of the ICollection to an Array, starting at a particular Array index. Inherited from ICollection. |
GetEnumerator() | Returns an enumerator that iterates through the collection. Inherited from IEnumerable<T>. |
GetFormControlById(Int32) | Obtains a form control by its ID from the collection. |
GetFormControlsByName(String) | Obtains a list of form controls by name from the collection. |
IndexOf(FormControl) | Returns the position of the specified form control in the collection. |
Remove(FormControl) | Removes specific form control from the collection. |
RemoveAt(Int32) | Removes a form control at the specified index from the collection. |
See Also