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

    Parameters

    value
    Number to store in the property.

    Return Value

    New IntegerProperty created from the given System.String value.
    Example
    The following example shows how to convert a number to the IntegerProperty.
    IntegerProperty intProperty = "-97";
    See Also