[]
Sets the specified fill to a uniform color.
After calling this method, use Color to configure the solid fill color.
void Solid()
Sub Solid()
IShape shape = worksheet.Shapes.AddShape(AutoShapeType.Rectangle, 20, 20, 100, 60);
IFillFormat fillFormat = shape.Fill;
fillFormat.Solid();
fillFormat.Color.RGB = Color.Blue;