CreateBooleanOfType Method


Creates a boolean data object of the specified type.

Namespace: Autodesk.Revit.DB.IFC
Assembly: RevitAPIIFC (in RevitAPIIFC.dll) Version: 2015.0.0.0 (2015.0.0.0)
Since: 2013

Syntax

C#
public static IFCData CreateBooleanOfType(
	bool value,
	string typeName
)
Visual Basic
Public Shared Function CreateBooleanOfType ( _
	value As Boolean, _
	typeName As String _
) As IFCData
Visual C++
public:
static IFCData^ CreateBooleanOfType(
	bool value, 
	String^ typeName
)

Parameters

value
Type: System Boolean
The boolean value.
typeName
Type: System String
The type name.

Return Value

The IFCData object.

Exceptions

Exception Condition
Autodesk.Revit.Exceptions ArgumentNullException A non-optional argument was NULL

See Also