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

    Parameters

    value
    Text form of resistance to store in the property.

    Return Value

    New ResistanceProperty created from the given System.String value.
    Example
    ResistanceProperty resistanceProperty1 = "42 Ohm";
    ResistanceProperty resistanceProperty2 = "42Ohm";
    ResistanceProperty resistanceProperty3 = "42";
    // Unit of resistanceProperty3 depends on Harness proD settings!
    See Also