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

    Parameters

    value
    Text form of percentage to store in the property.

    Return Value

    New PercentProperty created from the given System.String value.
    Example
    PercentProperty percentProperty1 = "42 %";
    PercentProperty percentProperty2 = "42%";
    PercentProperty percentProperty3 = "42";
    See Also