GetSpaceAtPoint Method (XYZ, Phase)


Gets a space containing the point.

Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 24.0.0.0 (24.0.0.0)

Syntax

C#
public Space GetSpaceAtPoint(
	XYZ point,
	Phase phase
)
Visual Basic
Public Function GetSpaceAtPoint ( _
	point As XYZ, _
	phase As Phase _
) As Space
Visual C++
public:
Space^ GetSpaceAtPoint(
	XYZ^ point, 
	Phase^ phase
)

Parameters

point
Type: Autodesk.Revit.DBXYZ
Point to be checked.
phase
Type: Autodesk.Revit.DBPhase
Phase in which the space exists.

Return Value

The space containing the point.

Remarks

If phase is a null reference (Nothing in Visual Basic), it will get the space of the last phase.The first one found will be returned. If there is no space containing the point, it returns a null reference (Nothing in Visual Basic).

Exceptions

ExceptionCondition
Autodesk.Revit.ExceptionsArgumentNullException Thrown when the point is a null reference (Nothing in Visual Basic).
Autodesk.Revit.ExceptionsArgumentException Thrown when the coordinates of the point are not number or are Double::MaxValue or Double::MinValue.

See Also