Filters an array of object identifiers.
Rhino.FilterObjects (arrObjects, intType)
lngColor |
Required. Array. An array of strings identifying the objects to filter. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
intType |
Required. Number. The type(s) of geometry objects (points, curves, surfaces, meshes, etc.) that can be returned. Object types can be added together to filter several different kinds of geometry.
|
Array |
An array of strings identifying the filtered objects if successful. |
Null |
If not successful, or on error. |
Dim arrObjects, arrFiltered
arrObjects = Rhino.NormalObjects
If IsArray(arrObjects) Then
arrFiltered = Rhino.FilterObjects(arrObjects, 4)
If IsArray(arrFiltered) Then
Call Rhino.SelectObjects(arrFiltered)
End If
End If