GefColorFormat.MakeMixed (method)

Used in expression lists to change the color of objects and not the style.
Syntax: object.MakeMixed
Description: Used in expression lists to change the color of objects and not the style.

Example:

Sub GefColorFormat_MakeMixed()
    
    Dim oCimObj As GefObject
    Dim oCimExprListAnim As GefExprListAnim
    Dim oCimExprListAnimElement As GefExprListAnimElement
    
    Set oCimObj = CimGetObject
    Set oCimExprListAnim = oCimObj.ExprListAnim
    Set oCimExprListAnimElement = oCimExprListAnim.Item(0)
    oCimExprListAnimElement.GetFill.ForeColor.MakeMixed
    CimGetScreen.Refresh False
    
End Sub