WorksetKindFilter Constructor (WorksetKind, Boolean)


Constructs a new instance of WorksetKindFilter filter to match worksets of the given WorksetKind.

Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 2015.0.0.0 (2015.0.0.0)
Since: 2012

Syntax

C#
public WorksetKindFilter(
	WorksetKind worksetKind,
	bool inverted
)
Visual Basic
Public Sub New ( _
	worksetKind As WorksetKind, _
	inverted As Boolean _
)
Visual C++
public:
WorksetKindFilter(
	WorksetKind worksetKind, 
	bool inverted
)

Parameters

worksetKind
Type: Autodesk.Revit.DB WorksetKind
The WorksetKind to match.
inverted
Type: System Boolean
True if the filter should match all worksets which are not of the given WorksetKind.

Exceptions

Exception Condition
Autodesk.Revit.Exceptions ArgumentOutOfRangeException A value passed for an enumeration argument is not a member of that enumeration

See Also