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

    Parameters

    value
    Text form of voltage to store in the property.

    Return Value

    New VoltageProperty created from the given System.String value.
    Example
    VoltageProperty voltageProperty1 = "42 V";
    VoltageProperty voltageProperty2 = "42V";
    VoltageProperty voltageProperty3 = "42";
    // Unit of voltageProperty3 depends on Harness proD settings!
    See Also