Share via


ChartFillFormat.Solid Method

Sets the specified fill to a uniform color. Use this method to convert a gradient, textured, patterned, or background fill back to a solid fill.

Namespace:  Microsoft.Office.Interop.PowerPoint
Assembly:  Microsoft.Office.Interop.PowerPoint (in Microsoft.Office.Interop.PowerPoint.dll)

Syntax

'Declaration
Sub Solid
'Usage
Dim instance As ChartFillFormat

instance.Solid()
void Solid()

Examples

This example converts all fills on myDocument to uniform red fills.

Set myDocument = ActivePresentation.Slides(1)

For Each s In myDocument.Shapes

    With s.Fill

        .Solid.ForeColor.RGB = RGB(255, 0, 0)

    End With

Next

See Also

Reference

ChartFillFormat Interface

ChartFillFormat Members

Microsoft.Office.Interop.PowerPoint Namespace