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

    Parameters

    value
    Interval to save.

    Return Value

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