Harness proD API Help
EPLAN.Harness.API.ApiProperties Namespace / PropertyValue Class / Implicit Type Conversion Operator / Implicit Type Conversion(Interval<Double>,PropertyValue) Operator
Value to convert.
Example
In This Topic
    Implicit Type Conversion(Interval<Double>,PropertyValue) Operator
    In This Topic
    Implicit conversion from PropertyValue to System.DoubleInterval<T>.
    Syntax
    public Interval<double> operator implicit( 
       PropertyValue propertyValue
    )

    Parameters

    propertyValue
    Value to convert.

    Return Value

    Interval as Interval<T> created from the given PropertyValue.
    Remarks
    Use only for a PropertyValue which stores a double interval value! In case of null input returns default(Interval<double>) (null).
    Example
    PropertyValue propValue = new PropertyValue(23, 42);
    Interval<double> result = propValue;
    See Also