SceneItemCollection

Introduced

v1.5

Description

A collection of SceneItem objects. This collection is 0-based.

Methods

Filter Find GetAsText  
       

Properties

Count operator Item operator    
       

Examples

VBScript Example

'VBScript example

set oRoot = Application.ActiveProject.ActiveScene.Root

set oGroup = oRoot.AddGroup

set oCube = oRoot.AddGeometry( "Cube", "MeshSurface" )

oGroup.AddMember oCube

for each oMember in oGroup.Members

	LogMessage oMember.Name & " is a member of the " & oGroup.Name

next

See Also

Group.Members