Click or drag to resize

DocumentFindType(Type) Method

Enumerate all visuals of a specified type.

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

Parameters

type  Type
The Type of visual to search for.

Return Value

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