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

    Parameters

    value
    Number to store in the property.

    Return Value

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