Color2
Stroke.Color2 property
يحدد اللون الثاني للحد.
public Color Color2 { get; set; }
ملاحظات
القيمة الافتراضية لShape
is White.
أمثلة
يوضح كيفية معالجة ميزات حدود الشكل.
Document doc = new Document(MyDir + "Shape stroke pattern border.docx");
Shape shape = (Shape)doc.GetChild(NodeType.Shape, 0, true);
Stroke stroke = shape.Stroke;
// يمكن أن تحتوي الحدود على لونين، يُستخدمان لإنشاء نمط محدد بواسطة بيانات الصورة ذات اللونين.
// لا تستخدم الحدود ذات اللون الواحد خاصية Color2.
Assert.AreEqual(Color.FromArgb(255, 128, 0, 0), stroke.Color);
Assert.AreEqual(Color.FromArgb(255, 255, 255, 0), stroke.Color2);
Assert.NotNull(stroke.ImageBytes);
File.WriteAllBytes(ArtifactsDir + "Drawing.StrokePattern.png", stroke.ImageBytes);
أنظر أيضا
- class Stroke
- مساحة الاسم Aspose.Words.Drawing
- المجسم Aspose.Words