
System.Object
EPLAN.Harness.API.ApiProperties.Property
EPLAN.Harness.API.ApiProperties.BooleanProperty
Represents a property with boolean value.
BooleanProperty boolProperty1 = new BooleanProperty(true); BooleanProperty boolProperty2 = false; Console.WriteLine(boolProperty1); Console.WriteLine(boolProperty2.ToString()); Console.WriteLine(boolProperty1.Value.ToString()); Console.WriteLine(boolProperty2.Value.ToString()); Console.WriteLine(true == boolProperty1.Value); Console.WriteLine(true == boolProperty2.Value); // Results: // True // False // True // False // True // False
Name | Description | |
---|---|---|
![]() | BooleanProperty Constructor | Overloaded. |
Name | Description | |
---|---|---|
![]() | IsInterval | Specifies whether the property is interval. (Inherited from EPLAN.Harness.API.ApiProperties.Property) |
![]() | Unit | Unit of the value of this property. (Inherited from EPLAN.Harness.API.ApiProperties.Property) |
![]() | Value | Gets the value of this property. (Inherited from EPLAN.Harness.API.ApiProperties.Property) |
Name | Description | |
---|---|---|
![]() | Equals | Is this property equal to the following object? |
![]() | GetHashCode | Serves as the default hash function. |
![]() | ToString | Returns a string that represents the current object. (Inherited from EPLAN.Harness.API.ApiProperties.Property) |
![]() | Are these properties equal? |
![]() | Overloaded. Implicit conversion from System.Boolean to BooleanProperty. |
![]() | Are these properties not equal? |
![]() | Negates the BooleanProperty. |