DbElementTypeInstance
- Last UpdatedJun 02, 2022
- 1 minute read
This class contains instances of DbElementType for every element type in the AVEVA module. These instances may be used wherever a DbElementType is expected, for example: if a method MyMethod() takes an DbElementType, then you could write:
for example:
MyMethod(Aveva.Core.Database.DbElementTypeInstance.EQUIPMENT);
It is often convenient to add a using statement for these instances, for example:
using NOUN=Aveva.Core.Database.DbElementTypeInstance;
MyMethod(NOUN.EQUIPMENT);