AnimatGuiCtrls.Controls.DataGridComboBoxColumn.GetPreferredHeight C# (CSharp) Method

GetPreferredHeight() protected method

protected GetPreferredHeight ( Graphics g, object val ) : int
g System.Drawing.Graphics
val object
return int
        protected override int GetPreferredHeight(Graphics g, object val)
        {
            // Return the font height, plus a few pixels.
            return FontHeight + 2;
        }