Harness proD API Help
EPLAN.Harness.API.ApiProperties Namespace / FlowProperty Class / Implicit Type Conversion Operator
Text form of flow to store in the property.
Example
In This Topic
    Implicit Type Conversion Operator (FlowProperty)
    In This Topic
    Implicit conversion from System.String to FlowProperty.
    Syntax
    public FlowProperty operator implicit( 
       string value
    )

    Parameters

    value
    Text form of flow to store in the property.

    Return Value

    New FlowProperty created from the given System.String value.
    Example
    FlowProperty flowProperty1 = "42 m3/sec";
    FlowProperty flowProperty2 = "42m3/sec";
    FlowProperty flowProperty3 = "42";
    // Unit of flowProperty3 depends on Harness proD settings!
    See Also