GefFillFormat.Solid (method)

Sets the fill style to be solid.
Syntax: object.Solid
Description: Sets the Type of the fill to GefFillSolid. The ForeColor is used as the color.

Example:

Sub FillFormat_Solid()
    
    Dim oCimObj As GefObject
    Dim oCimFillFmt As GefFillFormat
    
    Set oCimObj = CimGetObject
    Set oCimFillFmt = oCimObj.Fill
    
    oCimFillFmt.Solid
    CimGetScreen.Refresh False
    
End Sub