AnimatGuiCtrls.Controls.PropertyBag.PropertySpecCollection.Add C# (CSharp) Method

Add() public method

Adds a PropertySpec to the end of the PropertySpecCollection.
public Add ( PropertySpec value ) : int
value PropertySpec The PropertySpec to be added to the end of the PropertySpecCollection.
return int
            public int Add(PropertySpec value)
            {
                int index=-1;

                if (SecurityAllow(value))
                    index = innerArray.Add(value);

                return index;
            }