GefObjectExpressions.Rebuild (method)

Rebuilds the internal collection of expressions.
Syntax: object.Rebuild
Description: The Rebuild method will rebuild the interal collection of expressions from the configuration of the object. Call this if you have changed the configuration of the object and have previously called methods on this collection.

Example:

Sub GefObjectExpressions_Rebuild()
    
    Dim oCimObj As GefObject
    Dim oCimObjExprs As GefObjectExpressions
    
    Set oCimObj = CimGetObject
    Set oCimObjExprs = oCimObj.Expressions
    
    oCimObjExprs.Rebuild
    
End Sub