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

    Parameters

    propertyValue
    Value to convert.

    Return Value

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