Color

ShadowFormat.Color property

Gets or sets a Color object that represents the color for the shadow. The default value is Black.

public Color Color { get; set; }

Examples

Shows how to get shadow color.

Document doc = new Document(MyDir + "Shadow color.docx");
Shape shape = (Shape)doc.GetChild(NodeType.Shape, 0, true);
ShadowFormat shadowFormat = shape.ShadowFormat;

Assert.That(shadowFormat.Color.ToArgb(), Is.EqualTo(Color.Red.ToArgb()));
Assert.That(shadowFormat.Type, Is.EqualTo(ShadowType.ShadowMixed));

Shows how to set a color with transparency.

Document doc = new Document(MyDir + "Shadow color.docx");
Shape shape = (Shape)doc.GetChild(NodeType.Shape, 0, true);

ShadowFormat shadowFormat = shape.ShadowFormat;
shadowFormat.Type = ShadowType.Shadow21;
shadowFormat.Color = Color.Red;
shadowFormat.Transparency = 0.8;

doc.Save(ArtifactsDir + "Shape.ShadowFormatTransparency.docx");

See Also