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

    Parameters

    value
    Text form of conductance to store in the property.

    Return Value

    New ConductanceProperty created from the given System.String value.
    Example
    The following example shows how to convert a string to the ConductanceProperty.
    ConductanceProperty conductanceProperty1 = "42 S";
    ConductanceProperty conductanceProperty2 = "42S";
    ConductanceProperty conductanceProperty3 = "42";
    // Unit of conductanceProperty3 depends on Harness proD settings!
    See Also