TextEffect

Font.TextEffect property

الحصول على تأثير الخط المتحرك أو تعيينه.

public TextEffect TextEffect { get; set; }

أمثلة

يوضح كيفية تطبيق تأثير مرئي على الجري.

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

builder.Font.Size = 36;
builder.Font.TextEffect = TextEffect.SparkleText;

builder.Writeln("Text with a sparkle effect.");

// الإصدارات الأقدم من Microsoft Word تدعم فقط تأثيرات الرسوم المتحركة للخطوط.
doc.Save(ArtifactsDir + "Font.SparklingText.doc");

أنظر أيضا