Forms2OleControlType
Contents
[
Hide
]Forms2OleControlType enumeration
Enumerates types of Forms 2.0 controls.
public enum Forms2OleControlType
Values
| Name | Value | Description |
|---|---|---|
| OptionButton | 0 | A radio button control. |
| Label | 1 | A control that displays text. |
| Textbox | 2 | A control that allows the user to enter text. |
| CheckBox | 3 | A control that allows the user to select or deselect an option. |
| ToggleButton | 4 | A control that allows the user to toggle between two states. |
| SpinButton | 5 | A control that allows the user to increase or decrease a value. |
| ComboBox | 6 | A control that allows the user to select an item from a list. |
| Frame | 7 | A control that groups other controls. |
| MultiPage | 8 | A control that displays multiple pages of content. |
| TabStrip | 9 | A control that allows the user to switch between multiple pages of content. |
| CommandButton | 10 | A button that triggers an action when clicked. |
| Image | 11 | A control that displays an image. |
| ScrollBar | 12 | A control that allows the user to scroll through content. |
| Form | 13 | A container for other controls. |
| ListBox | 14 | A control that displays a list of items. |
Examples
Shows how to change state of the CheckBox control.
Document doc = new Document(MyDir + "ActiveX controls.docx");
Shape shape = (Shape)doc.GetChild(NodeType.Shape, 0, true);
CheckBoxControl checkBoxControl = (CheckBoxControl)shape.OleFormat.OleControl;
checkBoxControl.Checked = true;
Assert.That(checkBoxControl.Checked, Is.EqualTo(true));
Assert.That(checkBoxControl.Type, Is.EqualTo(Forms2OleControlType.CheckBox));
See Also
- namespace Aspose.Words.Drawing.Ole
- assembly Aspose.Words