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

PropertyDefinition.PropertyType Enumeration
Types of stored values
Syntax
public enum PropertyDefinition.PropertyType : 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
ValueWithUnit26Value with unit
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