OleControl
Innehåll
[
Dölj
]OleControl class
Representerar OLE ActiveX-kontroll.
För att lära dig mer, besökArbeta med Ole Objects dokumentationsartikel.
public class OleControl
Egenskaper
namn | Beskrivning |
---|---|
IsForms2OleControl { get; } | ReturnerarSann om kontrollen är enForms2OleControl . |
Name { get; set; } | Hämtar eller ställer in namnet på ActiveX-kontrollen. |
Exempel
Visar hur du verifierar egenskaperna för en ActiveX-kontroll.
Document doc = new Document(MyDir + "ActiveX controls.docx");
Shape shape = (Shape) doc.GetChild(NodeType.Shape, 0, true);
OleControl oleControl = shape.OleFormat.OleControl;
Assert.AreEqual("CheckBox1", oleControl.Name);
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);
Assert.AreEqual(string.Empty, checkBox.GroupName);
// Observera att du inte kan ställa in GroupName för en ram.
checkBox.GroupName = "Aspose group name";
}
Se även
- namnutrymme Aspose.Words.Drawing.Ole
- hopsättning Aspose.Words