Harness proD API Help
EPLAN.Harness.API.ApiProperties Namespace / PropertyValue Class / Implicit Type Conversion Operator / Implicit Type Conversion(UInt32,PropertyValue) Operator
Value to convert.
Example
In This Topic
    Implicit Type Conversion(UInt32,PropertyValue) Operator
    In This Topic
    Implicit conversion from PropertyValue to System.Int32.
    Syntax
    public uint operator implicit( 
       PropertyValue propertyValue
    )

    Parameters

    propertyValue
    Value to convert.

    Return Value

    System.Int32 value of given PropertyValue.
    Remarks
    Use only for a PropertyValue which stores an integer value! In case of null input returns default(uint) (0).
    Example
    PropertyValue propValue = new PropertyValue(23);
    uint result = propValue;
    See Also