Type
CheckBoxControl.Type property
Gets type of Forms 2.0 control.
public override Forms2OleControlType Type { get; }
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.AreEqual(true, checkBoxControl.Checked);
Assert.AreEqual(Forms2OleControlType.CheckBox, checkBoxControl.Type);
See Also
- enum Forms2OleControlType
- class CheckBoxControl
- namespace Aspose.Words.Drawing.Ole
- assembly Aspose.Words