GefRange (object)

Contains a collection of GefObject objects.
Description: This is an arbitrary collection of GefObject objects. It is generally returned by methods that need to return a collection of objects.

Example:

Sub GefScreen_Selection()
    
    Dim oCimScr As GefScreen
    Dim oCimRng As GefRange
    
    Set oCimScr = CimGetScreen
    Set oCimRng = oCimScr.Selection
    oCimScr.Select gefSelectAll
    MsgBox "There are " & oCimRng.Count & " item(s) selected"
    
End Sub
See Also: GefObject.Ungroup , GefScreen.Selection
Properties: Application , Count , Item , Parent
Methods: Remove