[This is preliminary documentation and is subject to change.]
Adds an Attribute to the AttributeSet.
- value (Attribute)
- The Attribute to add to the AttributeSet.
The position into which the new Attribute was inserted.
This sample shows how to call the AddAttribute method.
CopyC#
AttributeSet attributeSet = new DataSet(); Attribute attribute = new Attribute(0x12345678, VR.AE, "String0", "String1", "String2"); attributeSet.AddAttribute(attribute);