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

    Parameters

    value
    Boolean value to store in the property.

    Return Value

    New BooleanProperty created from the given System.Boolean value.
    Example
    The following example shows how to convert a Boolean value to a BooleanProperty.
    BooleanProperty booleanProperty = true;
    See Also