Harness proD API Help
EPLAN.Harness.API.ApiProperties Namespace / AreaProperty Class / AreaProperty Constructor / AreaProperty Constructor(Double,Double,Unit)
The lower boundary of area interval.
The higher boundary of area interval.
The unit of area's lowerValue and higherValue.
Example
In This Topic
    AreaProperty Constructor(Double,Double,Unit)
    In This Topic
    Creates a new instance of the AreaProperty with the specified interval value and unit.
    Syntax
    public AreaProperty( 
       double lowerValue,
       double higherValue,
       Unit unit
    )

    Parameters

    lowerValue
    The lower boundary of area interval.
    higherValue
    The higher boundary of area interval.
    unit
    The unit of area's lowerValue and higherValue.
    Exceptions
    ExceptionDescription
    Thrown when the unit is not valid for this property.
    Example
    The following example shows how to create a new AreaProperty with an interval value.
    AreaProperty areaProperty = new AreaProperty(23, 42.0, Unit.SquareMeter);
    See Also