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

    Parameters

    number
    The value to store in the property.
    Example
    The following example shows how to create a new DecimalProperty with a double value.
    DecimalProperty decimalProperty = new DecimalProperty(14.7);
    See Also