SilverScreen Solid Modeler

BosList.EveryBosNode method

BosList.EveryBosNode method

Previous topic Next topic  

BosList.EveryBosNode method

Previous topic Next topic JavaScript is required for the print function  

SilverSharpAPI

 

public static BosList EveryBosNode()

 

 

 

 

 




Synopsis

The EveryBosNode method return a BosList class that will enumerate every entity in the current SilverScreen drawing.

 

Parameters

none

 

 

Return Value

EveryBosNode returns a BosList class

 

 

Remarks

This function retrieves all children and their descendants of the ROOT block entity. In the familial parlance, it will retrieve children as well as grand children.

 

 

See Also

BosList, FromChildren

 

 

Example

To visit all of the entities in the current SilverScreen drawing, do this:

 

C# Code

 

 using SilverSharp;

 

 . . .

 

 BosList bl = BosList.EveryBosNode();

   

 foreach ( BOS_NODE bos in bl )

    {

    VisitOneBos(bos);

    }