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

    Parameters

    value
    Text form of torque to store in the property.

    Return Value

    New TorqueProperty created from the given System.String value.
    Example
    TorqueProperty torqueProperty1 = "42 N.m";
    TorqueProperty torqueProperty2 = "42N.m";
    TorqueProperty torqueProperty3 = "42";
    // Unit of torqueProperty3 depends on Harness proD settings!
    See Also