XYZ Constructor (Double, Double, Double)


Creates an XYZ with the supplied coordinates.

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

Syntax

C#
public XYZ(
	double x,
	double y,
	double z
)
Visual Basic
Public Sub New ( _
	x As Double, _
	y As Double, _
	z As Double _
)
Visual C++
public:
XYZ(
	double x, 
	double y, 
	double z
)

Parameters

x
Type: System Double
The first coordinate.
y
Type: System Double
The second coordinate.
z
Type: System Double
The third coordinate.

Exceptions

Exception Condition
Autodesk.Revit.Exceptions ArgumentException Thrown when setting an infinite number to the X, Y or Z property.

See Also