EvPartQueryOptions Interface
The EvPartQueryOptions TS interface defines a blueprint of a JS object with the settings for returning children of a given object in 3D space.
Properties
An EvPartQueryOptions object has the following properties:
optional getChildren: boolean;A Boolean, a switch to indicate whether to return (
true) or not return (false) the direct children of the given 3D object.optional recursive: boolean;A Boolean, a switch to indicate whether to return (
true) or not return (false) recursively all the children of the given 3D object.
Examples
Discussion
An EvPartQueryOptions object should have either of the properties to specify which children of the given 3D object should be returned. If both properties are given, the getChildren property is ignored, and all the children are returned recursively. If no property is given, the system does not return the children.