Eplan Platform API
Eplan.EplApi.DataModel Namespace / Project Class / DeviceTagConfig Property
Example

In This Topic
    DeviceTagConfig Property
    In This Topic
    Predefined property for accessing following project settings: EnableSyntaxCheck, UserCharacters, AllowUserCharacters, AllowedLetters, AllowSpecialCharacters, PlantDesignationNumbersOnly.
    Syntax
    public Project.DeviceTagSettings DeviceTagConfig {get;}
    public:
    property Project.DeviceTagSettings^ DeviceTagConfig {
       Project.DeviceTagSettings^ get();
    }

    Property Value

    Object of DeviceTagSettings class.
    Exceptions
    ExceptionDescription
    Thrown when project is invalid object.
    Thrown when project is not created.
    Remarks
    This property might throw exceptions caused by DeviceTagConfig.
    Example
    using Eplan.EplApi.DataModel;
     Project proj; // = ....
      proj.DeviceTagConfig.EnableSyntaxCheck = true;
      proj.DeviceTagConfig.UserCharacters = @"^";
      proj.DeviceTagConfig.AllowUserCharacters = true;
    
     // now it is possible to use for example:
     Page page; // = ...
      page.Name = @"=^^^^+^^";
    See Also