Color2
Stroke.Color2 property
Kontur için ikinci rengi tanımlar.
public Color Color2 { get; set; }
Notlar
Bir için varsayılan değerShape
is White.
Örnekler
Şekil kontur özelliklerinin nasıl işleneceğini gösterir.
Document doc = new Document(MyDir + "Shape stroke pattern border.docx");
Shape shape = (Shape)doc.GetChild(NodeType.Shape, 0, true);
Stroke stroke = shape.Stroke;
// Konturlar, iki tonlu görüntü verileriyle tanımlanan bir desen oluşturmak için kullanılan iki renge sahip olabilir.
// Tek renkli konturlar Color2 özelliğini kullanmaz.
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);
Ayrıca bakınız
- class Stroke
- ad alanı Aspose.Words.Drawing
- toplantı Aspose.Words