Harness proD API Help
EPLAN.Harness.API.ApiProperties Namespace / IntegerProperty Class / IntegerProperty Constructor / IntegerProperty Constructor(Int32)
The value to store in the property.
Example
In This Topic
    IntegerProperty Constructor(Int32)
    In This Topic
    Creates a new instance of the IntegerProperty with the specified value.
    Syntax
    public IntegerProperty( 
       int number
    )

    Parameters

    number
    The value to store in the property.
    Example
    The following example shows how to create a new IntegerProperty with a int value.
    IntegerProperty integerProperty = new IntegerProperty(14);
    See Also