tnf property

TypeNameFormat get tnf

Gets the Type Name Format of this record.

Implementation

TypeNameFormat get tnf {
  return TypeNameFormat.values[flags.TNF];
}
set tnf (TypeNameFormat tnf)

Sets the Type Name Format of this record.

Implementation

set tnf(TypeNameFormat tnf) {
  flags.TNF = TypeNameFormat.values.indexOf(tnf);
}