Harness proD API Help
EPLAN.Harness.API.ApiProperties Namespace / UnsignedIntegerProperty Class
Members Example
In This Topic
    UnsignedIntegerProperty Class
    In This Topic
    Property which stores System.Int32 values.
    Object Model
    UnsignedIntegerProperty ClassPropertyValue Class
    Inheritance Hierarchy

    System.Object
       EPLAN.Harness.API.ApiProperties.Property
          EPLAN.Harness.API.ApiProperties.IntegerProperty
             EPLAN.Harness.API.ApiProperties.UnsignedIntegerProperty

    Syntax
    public class UnsignedIntegerProperty : IntegerProperty 
    Remarks

    Represents a property with a positive integer value.

    Example
    The following example shows how to use the class UnsignedIntegerProperty.
    UnsignedIntegerProperty numProperty1 = new UnsignedIntegerProperty(42);
    UnsignedIntegerProperty numProperty2 = 23;
    
    Console.WriteLine(numProperty1.ToString());
    Console.WriteLine(numProperty2.Value.ToString());
    
    // Results:
    // 42
    // 23
    Public Constructors
     NameDescription
    Public ConstructorOverloaded.   
    Top
    Public Properties
     NameDescription
    Public Property Specifies whether the property is interval. (Inherited from EPLAN.Harness.API.ApiProperties.Property)
    Public Property Unit of the value of this property. (Inherited from EPLAN.Harness.API.ApiProperties.Property)
    Public Property Gets the value of this property. (Inherited from EPLAN.Harness.API.ApiProperties.Property)
    Top
    Public Methods
     NameDescription
    Public MethodIs this property equal to the following object? (Inherited from EPLAN.Harness.API.ApiProperties.IntegerProperty)
    Public MethodServes as the default hash function. (Inherited from EPLAN.Harness.API.ApiProperties.IntegerProperty)
    Public MethodReturns a string that represents the current object. (Inherited from EPLAN.Harness.API.ApiProperties.Property)
    Top
    Public Operators
    Overloaded. Implicit conversion from System.Int32 to UnsignedIntegerProperty.
    Top
    See Also