
System.Object
EPLAN.Harness.API.ApiProperties.Property
EPLAN.Harness.API.ApiProperties.IntegerProperty
EPLAN.Harness.API.ApiProperties.UnsignedIntegerProperty
Represents a property with an integer number value.
IntegerProperty numProperty1 = new IntegerProperty(42); IntegerProperty numProperty2 = -23; Console.WriteLine(numProperty1.ToString()); Console.WriteLine(numProperty2.Value.ToString()); // Results: // 42 // -23
Name | Description | |
---|---|---|
![]() | IntegerProperty 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) |
![]() | Sums two properties. |
![]() | Are these properties equal? |
![]() | Overloaded. Implicit conversion from System.Int32 to IntegerProperty. |
![]() | Are these properties not equal? |
![]() | Subtracts two properties. |