System.Windows.Forms.ListBox.GetScaledBounds C# (CSharp) Method

GetScaledBounds() private method

private GetScaledBounds ( Rectangle bounds, SizeF factor, BoundsSpecified specified ) : Rectangle
bounds System.Drawing.Rectangle
factor System.Drawing.SizeF
specified BoundsSpecified
return System.Drawing.Rectangle
		protected override Rectangle GetScaledBounds (Rectangle bounds, SizeF factor, BoundsSpecified specified)
		{
			bounds.Height = requested_height;

			return base.GetScaledBounds (bounds, factor, specified);
		}
#endif