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

    Parameters

    value
    Text form of capacitance to store in the property.

    Return Value

    New CapacitanceProperty created from the given System.String value.
    Example
    The following example shows how to convert a string to the CapacitanceProperty.
    CapacitanceProperty capacitanceProperty1 = "42 F";
    CapacitanceProperty capacitanceProperty2 = "42F";
    CapacitanceProperty capacitanceProperty3 = "42";
    // Unit of capacitanceProperty3 depends on Harness proD settings!
    See Also