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

    Parameters

    value
    Text form of the acceleration to store in the property.

    Return Value

    New AccelerationProperty created from the given System.String value.
    Example
    The following example shows how to convert a string to the AccelerationProperty.
    AccelerationProperty accelerationProperty1 = "42 m/sec2";
    AccelerationProperty accelerationProperty2 = "42m/sec2";
    AccelerationProperty accelerationProperty3 = "42";
    // Unit of accelerationProperty3 depends on Harness proD settings!
    See Also