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

    Parameters

    value
    Interval to save.

    Return Value

    New PropertyValue with interval created from the given Tuple.
    Remarks
    The resulting instance can hold only System.Double values from this moment. In case of null input returns PropertyValue(default(double), default(double)).
    Example
    Tuple<double, double> interval = new Tuple<double, double>(23, 42);
    PropertyValue value = interval;
    See Also