AnimatGuiCtrls.Controls.DropDownControlBase.GetTextBoxBounds C# (CSharp) Method

GetTextBoxBounds() private method

Gets the bounds of the textbox portion of the control by subtracting the dropdown button bounds from the client rectangle.
private GetTextBoxBounds ( ) : Rectangle
return System.Drawing.Rectangle
        private Rectangle GetTextBoxBounds()
        {
            return new Rectangle(0, 0, dropDownButtonBounds.Left, ClientRectangle.Height);
        }