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");

أنظر أيضا