

System.Object
EPLAN.Harness.API.ApiProperties.Property
EPLAN.Harness.API.ApiProperties.UnitProperties.UnitClassProperty
EPLAN.Harness.API.ApiProperties.VelocityProperty
public class VelocityProperty : EPLAN.Harness.API.ApiProperties.UnitProperties.UnitClassProperty
Represents a property with a velocity value.
Class provides a method to convert values between units.
VelocityProperty velocity = new VelocityProperty(130, Unit.KilometerPerHour); Console.WriteLine(velocity); velocity.Convert(Unit.MeterPerSecond); Console.WriteLine(velocity.ToString()); velocity = "100 mile/h"; Console.WriteLine(velocity); Console.WriteLine($"Value: {(double)velocity.Value}, Unit: {velocity.Unit}"); // Results: // 130 km/h // 36,111 m/s // 100 mile/h // Value: 100, Unit: MilePerHour
| Name | Description | |
|---|---|---|
![]() | VelocityProperty 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 | |
|---|---|---|
![]() | Convert | Convert a property to the specified unit. (Inherited from EPLAN.Harness.API.ApiProperties.UnitProperties.UnitClassProperty) |
![]() | Equals | Is this unit class property equal to the following object? (Inherited from EPLAN.Harness.API.ApiProperties.UnitProperties.UnitClassProperty) |
![]() | GetHashCode | Serves as the default hash function. (Inherited from EPLAN.Harness.API.ApiProperties.UnitProperties.UnitClassProperty) |
![]() | ToString | Overloaded. Returns a string that represents the current object. (Inherited from EPLAN.Harness.API.ApiProperties.UnitProperties.UnitClassProperty) |
Addition | Sums two properties. |
Implicit Type Conversion | Implicit conversion from System.String to VelocityProperty. |
Subtraction | Subtracts two properties. |