CodeTV.VideoControl.RemoveSpecialBorder C# (CSharp) Method

RemoveSpecialBorder() private method

private RemoveSpecialBorder ( ) : void
return void
        private void RemoveSpecialBorder()
        {
            if (this.blackBands != null)
            {
                for (int i = 0; i < 2; i++)
                {
                    Control control = this.blackBands[0];
                    this.blackBands.RemoveAt(0);
                    this.Controls.Remove(control);
                }
                this.blackBands = null;
            }
        }