GefFillFormat.BackColor (read-only property)

Gets the color format of the background color.
Syntax: Set GefColorFormat = object.BackColor
Description: This is the secondary color. It is only valid if the fill is patterened or a two color gradient.

Example:

Sub FillFormat_BackColor()
    
    Dim oCimObj As GefObject
    Dim oCimFillFmt As GefFillFormat
    
    Set oCimObj = CimGetObject
    Set oCimFillFmt = oCimObj.Fill
    
    If Not oCimFillFmt Is Nothing Then
        oCimFillFmt.BackColor.RGB = &HBB&
    End If
    CimGetScreen.Refresh False
    
End Sub