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

    Parameters

    value
    The value to store in the property.
    Example
    The following example shows how to create a new BooleanProperty with the value True.
    BooleanProperty booleanProperty = new BooleanProperty(true);
    See Also