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

    Parameters

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