Predefined property for accessing following project settings: EnableSyntaxCheck, UserCharacters, AllowUserCharacters, AllowedLetters, AllowSpecialCharacters, PlantDesignationNumbersOnly.
Property Value
Object of DeviceTagSettings class.
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 = @"=^^^^+^^";