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

    Parameters

    value
    Text form of force to store in the property.

    Return Value

    New ForceProperty created from the given System.String value.
    Example
    ForceProperty forceProperty1 = "42 N";
    ForceProperty forceProperty2 = "42N";
    ForceProperty forceProperty3 = "42";
    // Unit of forceProperty3 depends on Harness proD settings!
    See Also