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

    Parameters

    value
    Interval to save.

    Return Value

    New PropertyValue with an interval created from the given System.Array of System.Doubles.
    Remarks
    The resulting instance can hold only System.Double values from this moment. In case of null input returns PropyValue(default(double), default(double)). Two values are required. Missing is replaced with default(double) (0).
    Example
    double[] interval = new double[] { 23, 42 };
    PropertyValue value = interval;
    See Also