SilverScreen Solid Modeler

BosList.FromQgroup method

BosList.FromQgroup method

Previous topic Next topic  

BosList.FromQgroup method

Previous topic Next topic JavaScript is required for the print function  

SilverSharpAPI

 

public static BosList FromQgroup()

 

 

 

 

 




Synopsis

The FromQgroup method return a BosList class that will enumerate every entity in the current SilverScreen q-group.

 

 

Parameters

none

 

 

Return Value

FromQgroup returns a BosList class

 

 

Remarks

This function retrieves all entities of a q-group.

 

 

See Also

BosList, EveryBosNode, FromGroup

 

 

Example

To visit all of the entities in the current SilverScreen q-group, do this:

C# Code

 

 using SilverSharp;

 

 . . .

 

 BosList bl = BosList.FromQgroup();

   

 foreach ( BOS_NODE bos in bl )

    {

    VisitOneBos(bos);

    }