Color

Fill.Color property

Obtiene o establece un objeto Color que representa el color de primer plano para el relleno.

public Color Color { get; set; }

Observaciones

Esta propiedad preserva el componente alfa de laColor , a diferencia delForeColorpropiedad, que lo restablece a un color completamente opaco.

Ejemplos

Muestra cómo convertir cualquiera de los rellenos a relleno sólido.

Document doc = new Document(MyDir + "Two color gradient.docx");

// Obtiene el objeto de relleno para la fuente de la primera ejecución.
Fill fill = doc.FirstSection.Body.Paragraphs[0].Runs[0].Font.Fill;

// Verifique las propiedades de relleno de la fuente.
Console.WriteLine("The type of the fill is: {0}", fill.FillType);
Console.WriteLine("The foreground color of the fill is: {0}", fill.ForeColor);
Console.WriteLine("The fill is transparent at {0}%", fill.Transparency * 100);

// Cambia el tipo de relleno a Sólido con color verde uniforme.
fill.Solid(Color.Green);
Console.WriteLine("\nThe fill is changed:");
Console.WriteLine("The type of the fill is: {0}", fill.FillType);
Console.WriteLine("The foreground color of the fill is: {0}", fill.ForeColor);
Console.WriteLine("The fill transparency is {0}%", fill.Transparency * 100);

doc.Save(ArtifactsDir + "Drawing.FillSolid.docx");

Ver también