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

    Parameters

    propertyValue
    Value to convert.

    Return Value

    Remarks
    Use only for a PropertyValue which stores a double value! In case of null input returns default(double) (0d).
    Example
    PropertyValue propValue = new PropertyValue(23.3);
    double result = propValue;
    See Also