DbAttributeInstance
- Last UpdatedOct 27, 2023
- 1 minute read
This class contains instances of DbAttribute for every element type in PDMS/Marine. These instances may be used wherever a DbAttribute is expected. for example, if a method MyMethod() takes a DbAttribute, you could write, for example:
MyMethod(Aveva.Pdms.Database.DbAttributeInstance.XLEN);
It is often convenient to add a using statement for these instances, for example:
using ATT=Aveva.Pdms.Database.DbAttributeInstance;
MyMethod(ATT.XLEN);