Harness proD API Help
EPLAN.Harness.API.ApiProperties Namespace / FlowProperty Class / FlowProperty Constructor / FlowProperty Constructor(Double,Unit)
The value of flow.
The unit of flow value.
Example
In This Topic
    FlowProperty Constructor(Double,Unit)
    In This Topic
    Creates a new instance of the FlowProperty with the specified value and unit.
    Syntax
    public FlowProperty( 
       double value,
       Unit unit
    )

    Parameters

    value
    The value of flow.
    unit
    The unit of flow value.
    Exceptions
    ExceptionDescription
    Thrown when the unit is not valid for this property.
    Example
    The following example shows how to create a new FlowProperty.
    FlowProperty flowProperty = new FlowProperty(42.0, Unit.CubicMeterPerSecond);
    See Also