[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.IFillFormat.Solid

Solid Method

Solid()

Sets the specified fill to a uniform color.

After calling this method, use Color to configure the solid fill color.

Declaration
void Solid()
Sub Solid()
Examples
IShape shape = worksheet.Shapes.AddShape(AutoShapeType.Rectangle, 20, 20, 100, 60);
IFillFormat fillFormat = shape.Fill;
fillFormat.Solid();
fillFormat.Color.RGB = Color.Blue;