API Help
Eplan.EplApi.DataModel Namespace / PropertyDefinition.PropertyType Enumeration
Example Example

In This Topic
    PropertyDefinition.PropertyType Enumeration
    In This Topic
    Types of stored values
    Syntax
    public enum PropertyDefinition.PropertyType : System.Enum 
    public enum class PropertyDefinition.PropertyType : public System.Enum 
    Members
    MemberValueDescription
    Bool1Boolean type contain true or false
    Coord16Double value
    Double6Longer floating point value
    Long4Long numeric value
    MultilangString15Multi language string Eplan.EplApi.Base.MultiLangString
    Point13Point
    String7Unicode-String
    Time14Time value
    Variable23String
    Example
    When setting properties of type Double as string, e.g.
    oConnection.Properties[DataModel.Properties.Connection.CONNECTION_WIRECROSSSECTION] = "2.5";
    //... the current culture is not considered. You always have to
    //us a '.' as decimal separator.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             Eplan.EplApi.DataModel.PropertyDefinition.PropertyType

    See Also