SwfDotNet.IO.Swf.InjectTags C# (CSharp) Method

InjectTags() public method

Injects a range of tags in the current Swf.
public InjectTags ( BaseTagCollection values ) : void
values SwfDotNet.IO.Tags.BaseTagCollection The values.
return void
        public void InjectTags(BaseTagCollection values)
        {
            IEnumerator enums = values.GetEnumerator();

            for (int i = 0; enums.MoveNext(); i++)
            {
                BaseTag baseTag = (BaseTag)enums.Current;
                Add(baseTag);
            }
        }