Caption
İçindekiler
[
Saklamak
]Forms2OleControl.Caption property
Denetimin Başlık özelliğini alır veya ayarlar. Varsayılan değer boş bir dizedir.
public string Caption { get; set; }
Örnekler
ActiveX denetimi için başlığın nasıl ayarlanacağını gösterir.
DocumentBuilder builder = new DocumentBuilder();
CommandButtonControl button1 = new CommandButtonControl() { Caption = "Button caption" };
Shape shape = builder.InsertForms2OleControl(button1);
Assert.AreEqual("Button caption", button1.Caption);
Bir ActiveX denetiminin özelliklerinin nasıl doğrulanacağını gösterir.
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("First", 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);
// Bir Çerçeve için GrupAdı ayarlayamayacağınızı unutmayın.
checkBox.GroupName = "Aspose group name";
}
Ayrıca bakınız
- class Forms2OleControl
- ad alanı Aspose.Words.Drawing.Ole
- toplantı Aspose.Words