ComponentFactory.Krypton.Toolkit.ViewLeaf.this C# (CSharp) Method

this() public method

Gets or sets the view at the specified index.
public this ( int index ) : ViewBase
index int ViewBase index.
return ViewBase
        public override ViewBase this[int index]
        {
            get
            {
                // Argument must be out of range because we never have any views
                throw new ArgumentOutOfRangeException("index");
            }

            set
            {
                // Argument must be out of range because we never have any views
                throw new ArgumentOutOfRangeException("index");
            }
        }