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

    Parameters

    value
    Text form of temperature to store in the property.

    Return Value

    New TemperatureProperty created from the given System.String value.
    Example
    TemperatureProperty temperatureProperty1 = "42 K";
    TemperatureProperty temperatureProperty2 = "42K";
    TemperatureProperty temperatureProperty3 = "42";
    // Unit of temperatureProperty3 depends on Harness proD settings!
    See Also