Click or drag to resize

DocumentFindType Method (Type)

Enumerate all visuals of a specified type.

Namespace:  Demo3D.Visuals
Assembly:  Demo3D.Core (in Demo3D.Core.dll) Version: 15.0.2.11458
Syntax
C#
public List<Visual> FindType(
	Type type
)

Parameters

type
Type: SystemType
The Type of visual to search for.

Return Value

Type: ListVisual
A list of visuals of the supplied type.
Remarks
The returned collection IS SAFE to iterate over and to call functions that add or remove Visuals of the supplied type from the Scene, e.g. Delete.
See Also