Harness proD API Help
EPLAN.Harness.API.ApiProperties Namespace / CurrencyProperty Class / Implicit Type Conversion Operator
Text form of currency to store in the property.
Example
In This Topic
    Implicit Type Conversion Operator (CurrencyProperty)
    In This Topic
    Implicit conversion from System.String to CurrencyProperty.
    Syntax
    public CurrencyProperty operator implicit( 
       string value
    )

    Parameters

    value
    Text form of currency to store in the property.

    Return Value

    New CurrencyProperty created from the given System.String value.
    Example
    The following example shows how to convert string to the CurrencyProperty.
    CurrencyProperty currencyProperty1 = "42 €";
    CurrencyProperty currencyProperty2 = "42€";
    CurrencyProperty currencyProperty3 = "42";
    // Unit of currencyProperty3 depends on Harness proD settings!
    See Also