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

    Parameters

    value
    Text form of velocity to store in the property.

    Return Value

    New VelocityProperty created from the given System.String value.
    Example
    VelocityProperty velocityProperty1 = "42 m/s";
    VelocityProperty velocityProperty2 = "42m/s";
    VelocityProperty velocityProperty3 = "42";
    // Unit of velocityProperty3 depends on Harness proD settings!
    See Also