ExtendedPropertyDefinition.withTag constructor
ExtendedPropertyDefinition.withTag(
- int tag,
- MapiPropertyType? _mapiType
Implementation
ExtendedPropertyDefinition.withTag(int tag, this._mapiType) {
if (tag < 0x00 || tag > 0xFFFF) {
throw new RangeError.range(
tag, 0x00, 0xFFFF, "tag", "Strings.TagValueIsOutOfRange");
}
this._tag = tag;
}