CADability dotNET
Delegate definition of a filtering method restricting IOctTreeInsertable objects.

Namespace: CADability
Assembly: CADability (in CADability.dll) Version: 1.1.4254.24737 (1.1.*)

Syntax

C#
public delegate bool Filter(
	T toCheck
)
Visual Basic
Public Delegate Function Filter ( _
	toCheck As T _
) As Boolean
Visual C++
public delegate bool Filter(
	T toCheck
)

Parameters

toCheck
Type: T
The object beeing checked

Return Value

true if accepted, false if rejected

See Also