Harness proD API Help
EPLAN.Harness.API.ApiProperties Namespace / AngleProperty Class / AngleProperty Constructor / AngleProperty Constructor(Double,Unit)
The value of angle.
The unit of angle value.
Example
In This Topic
    AngleProperty Constructor(Double,Unit)
    In This Topic
    Creates a new instance of the AngleProperty with the specified value and unit.
    Syntax
    public AngleProperty( 
       double value,
       Unit unit
    )

    Parameters

    value
    The value of angle.
    unit
    The unit of angle value.
    Exceptions
    ExceptionDescription
    Thrown when the unit is not valid for this property.
    Example
    The following example shows how to create a new AngleProperty.
    AngleProperty angleProperty = new AngleProperty(42.0, Unit.Radian);
    See Also