Harness proD API Help
EPLAN.Harness.API.ApiProperties Namespace / DecimalProperty Class / Implicit Type Conversion Operator / Implicit Type Conversion(DecimalProperty,Double) Operator
Number to store in the property.
Example
In This Topic
    Implicit Type Conversion(DecimalProperty,Double) Operator
    In This Topic
    Implicit conversion from System.Double to DecimalProperty.
    Syntax
    public DecimalProperty operator implicit( 
       double value
    )

    Parameters

    value
    Number to store in the property.

    Return Value

    New DecimalProperty created from a given System.Double value.
    Example
    The following example shows how to convert a number to the DecimalProperty.
    DecimalProperty decimalProperty = 312.78;
    See Also