
System.Object
EPLAN.Harness.API.ApiProperties.Property
EPLAN.Harness.API.ApiProperties.TextProperty
EPLAN.Harness.API.ApiProperties.MultiLanguageTextProperty
Represents a property with a text value.
TextProperty textProperty1 = new TextProperty("Text1"); TextProperty textProperty2 = "Text2"; Console.WriteLine(textProperty1); Console.WriteLine(textProperty2.ToString()); Console.WriteLine(textProperty1.Value.ToString()); Console.WriteLine(textProperty2.Value.ToString()); Console.WriteLine("Text1" == textProperty1.Value); Console.WriteLine("Text" == textProperty2.Value); // Results: // Text1 // Text2 // Text1 // Text2 // True // False
Name | Description | |
---|---|---|
![]() | TextProperty Constructor | Overloaded. |
Name | Description | |
---|---|---|
![]() | IsInterval | Specifies whether the property is interval. (Inherited from EPLAN.Harness.API.ApiProperties.Property) |
![]() | Unit | Unit of the value of this property. (Inherited from EPLAN.Harness.API.ApiProperties.Property) |
![]() | Value | Gets the value of this property. (Inherited from EPLAN.Harness.API.ApiProperties.Property) |
Name | Description | |
---|---|---|
![]() | Equals | Is this property equal to the following object? |
![]() | GetHashCode | Serves as the default hash function. |
![]() | ToString | Returns a string that represents the current object. (Inherited from EPLAN.Harness.API.ApiProperties.Property) |
![]() | Are these properties equal? |
![]() | Overloaded. Implicit conversion from System.String to TextProperty. |
![]() | Are these properties not equal? |