ScreenTip
محتويات
[
يخفي
]FieldAutoTextList.ScreenTip property
الحصول على نص تلميح الشاشة المراد عرضه أو تعيينه.
public string ScreenTip { get; set; }
أمثلة
يوضح كيفية استخدام حقل AUTOTEXTLIST للاختيار من قائمة إدخالات النص التلقائي.
public void FieldAutoTextList()
{
Document doc = new Document();
// قم بإنشاء مستند معجم وقم بتعبئته بإدخالات نصية تلقائية.
doc.GlossaryDocument = new GlossaryDocument();
AppendAutoTextEntry(doc.GlossaryDocument, "AutoText 1", "Contents of AutoText 1");
AppendAutoTextEntry(doc.GlossaryDocument, "AutoText 2", "Contents of AutoText 2");
AppendAutoTextEntry(doc.GlossaryDocument, "AutoText 3", "Contents of AutoText 3");
DocumentBuilder builder = new DocumentBuilder(doc);
// أنشئ حقل قائمة نصوص تلقائية وقم بتعيين النص الذي سيعرضه الحقل في Microsoft Word.
// قم بتعيين النص لمطالبة المستخدم بالنقر بزر الماوس الأيمن فوق هذا الحقل لتحديد كتلة إنشاء النص التلقائي،
// الذي سيتم عرض محتوياته في الحقل.
FieldAutoTextList field = (FieldAutoTextList)builder.InsertField(FieldType.FieldAutoTextList, true);
field.EntryName = "Right click here to select an AutoText block";
field.ListStyle = "Heading 1";
field.ScreenTip = "Hover tip text for AutoTextList goes here";
Assert.AreEqual(" AUTOTEXTLIST \"Right click here to select an AutoText block\" " +
"\\s \"Heading 1\" " +
"\\t \"Hover tip text for AutoTextList goes here\"", field.GetFieldCode());
doc.Save(ArtifactsDir + "Field.AUTOTEXTLIST.dotx");
}
/// <summary>
/// قم بإنشاء كتلة إنشاء من نوع النص التلقائي وأضفها إلى مستند المسرد.
/// </summary>
private static void AppendAutoTextEntry(GlossaryDocument glossaryDoc, string name, string contents)
{
BuildingBlock buildingBlock = new BuildingBlock(glossaryDoc);
buildingBlock.Name = name;
buildingBlock.Gallery = BuildingBlockGallery.AutoText;
buildingBlock.Category = "General";
buildingBlock.Behavior = BuildingBlockBehavior.Paragraph;
Section section = new Section(glossaryDoc);
section.AppendChild(new Body(glossaryDoc));
section.Body.AppendParagraph(contents);
buildingBlock.AppendChild(section);
glossaryDoc.AppendChild(buildingBlock);
}
أنظر أيضا
- class FieldAutoTextList
- مساحة الاسم Aspose.Words.Fields
- المجسم Aspose.Words