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

    Parameters

    value
    Text form of angle to store in the property.

    Return Value

    New AngleProperty created from the given System.String value.
    Example
    The following example shows how to convert a string to the AngleProperty.
    AngleProperty angleProperty1 = "42 rad";
    AngleProperty angleProperty2 = "42rad";
    AngleProperty angleProperty3 = "42";
    // Unit of angleProperty3 depends on Harness proD settings!
    See Also