Color2

Stroke.Color2 property

Definisce un secondo colore per un tratto.

public Color Color2 { get; set; }

Osservazioni

Il valore predefinito per aShape è White.

Esempi

Mostra come elaborare le funzionalità del tratto forma.

Document doc = new Document(MyDir + "Shape stroke pattern border.docx");
Shape shape = (Shape)doc.GetChild(NodeType.Shape, 0, true);
Stroke stroke = shape.Stroke;

// I tratti possono avere due colori, che vengono utilizzati per creare un motivo definito da dati immagine bicolore.
// I tratti con un singolo colore non utilizzano la proprietà 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);

Guarda anche