Harness proD API Help
EPLAN.Harness.API.ApiProperties Namespace / TextProperty Class / TextProperty Constructor / TextProperty Constructor(String)
The value to store in the property.
Example
In This Topic
    TextProperty Constructor(String)
    In This Topic
    Creates a new instance of the TextProperty with the specified value.
    Syntax
    public TextProperty( 
       string value
    )

    Parameters

    value
    The value to store in the property.
    Example
    The following example shows how to create a new TextProperty with the text Hello world!.
    TextProperty textProperty = new TextProperty("Hello world!");
    See Also