Period Property
The period of this face in the specified parametric direction.

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

Syntax

C#
public double this[
	int paramIdx
] { get; }
Visual Basic
Public ReadOnly Property Period ( _
	paramIdx As Integer _
) As Double
	Get
Visual C++
public:
property double Period[int paramIdx] {
	double get (int paramIdx);
}

Parameters

paramIdx
Type: System..::..Int32
Use 0 for u coordinate and 1 for v coordinate.

Return Value

The real number equal to the period of this face.

Exceptions

ExceptionCondition
Autodesk.Revit.Exceptions..::..ArgumentOutOfRangeException Thrown when an attempt is made to access the flag with an index larger than dimension.
Autodesk.Revit.Exceptions..::..InvalidOperationException Thrown when this face is not cyclic in the specified direction.

See Also