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

    Parameters

    value
    Text to store in the property.

    Return Value

    New TextProperty created from the given System.String value.
    Example
    The following example shows how to convert a text to the TextProperty.
    TextProperty textProperty = "Test";
    See Also