BackgroundPatternThemeColor
Shading.BackgroundPatternThemeColor property
الحصول على أو تعيين لون سمة نمط الخلفية في نظام الألوان المطبق المرتبط بهذاShading
الكائن.
public ThemeColor BackgroundPatternThemeColor { get; set; }
أمثلة
يوضح كيفية تعيين الألوان الأمامية والخلفية لتظليل الملمس.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
Shading shading = doc.FirstSection.Body.FirstParagraph.ParagraphFormat.Shading;
shading.Texture = TextureIndex.Texture12Pt5Percent;
shading.ForegroundPatternThemeColor = ThemeColor.Dark1;
shading.BackgroundPatternThemeColor = ThemeColor.Dark2;
shading.ForegroundTintAndShade = 0.5;
shading.BackgroundTintAndShade = -0.2;
builder.Font.Border.Color = Color.Green;
builder.Font.Border.LineWidth = 2.5d;
builder.Font.Border.LineStyle = LineStyle.DashDotStroker;
builder.Writeln("Foreground and background pattern colors for shading texture.");
doc.Save(ArtifactsDir + "Font.ForegroundAndBackground.docx");
أنظر أيضا
- enum ThemeColor
- class Shading
- مساحة الاسم Aspose.Words
- المجسم Aspose.Words