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

    Parameters

    value
    Text form of quantity to store in the property.

    Return Value

    New QuantityProperty created from the given System.String value.
    Example
    QuantityProperty quantityProperty1 = "42 x";
    QuantityProperty quantityProperty2 = "42x";
    QuantityProperty quantityProperty3 = "42";
    See Also