AnimatGuiCtrls.Collections.KeyFrameCollection.IndexOf C# (CSharp) Method

IndexOf() public method

public IndexOf ( KeyFrame value ) : int
value AnimatGuiCtrls.Controls.KeyFrame
return int
        public int IndexOf(KeyFrame value)
        {
            // Find the 0 based index of the requested entry
            return base.List.IndexOf(value);
        }