DisplayText

FieldGoToButton.DisplayText property

الحصول على أو تعيين نص “الزر” الذي يظهر في المستند، بحيث يمكن تحديده لتنشيط الانتقال.

public string DisplayText { get; set; }

أمثلة

يظهر لإدراج حقل GOTOBUTTON.

Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);

// أضف حقل GOTOBUTTON. عندما ننقر نقرًا مزدوجًا فوق هذا الحقل في Microsoft Word،
// سوف يأخذ مؤشر النص إلى الإشارة المرجعية التي تشير خاصية الموقع إلى اسمها.
FieldGoToButton field = (FieldGoToButton)builder.InsertField(FieldType.FieldGoToButton, true);
field.DisplayText = "My Button";
field.Location = "MyBookmark";

Assert.AreEqual(" GOTOBUTTON  MyBookmark My Button", field.GetFieldCode());

// أدخل إشارة مرجعية صالحة للحقل المراد الرجوع إليه.
builder.InsertBreak(BreakType.PageBreak);
builder.StartBookmark(field.Location);
builder.Writeln("Bookmark text contents.");
builder.EndBookmark(field.Location);

doc.UpdateFields();
doc.Save(ArtifactsDir + "Field.GOTOBUTTON.docx");

أنظر أيضا