XYZ Constructor (Double, Double, Double)
Creates an XYZ with the supplied coordinates.

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

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

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

See Also