Forms2OleControlEnabled Property

Returns true if control is in enabled state.

Namespace:  Aspose.Words.Drawing.Ole
Assembly:  Aspose.Words (in Aspose.Words.dll) Version: 20.3
Syntax
public bool Enabled { get; }

Property Value

Type: Boolean
Examples
Shows how to get ActiveX control and properties from the document.
Document doc = new Document(MyDir + "ActiveX controls.docx");

// Get ActiveX control from the document 
Shape shape = (Shape) doc.GetChild(NodeType.Shape, 0, true);
OleControl oleControl = shape.OleFormat.OleControl;

Assert.AreEqual(null, oleControl.Name);

// Get ActiveX control properties
if (oleControl.IsForms2OleControl)
{
    Forms2OleControl checkBox = (Forms2OleControl) oleControl;
    Assert.AreEqual("Первый", checkBox.Caption);
    Assert.AreEqual("0", checkBox.Value);
    Assert.AreEqual(true, checkBox.Enabled);
    Assert.AreEqual(Forms2OleControlType.CheckBox, checkBox.Type);
    Assert.AreEqual(null, checkBox.ChildNodes);
}
See Also