System.Windows.Forms.BitmapLabel.BitmapLabel C# (CSharp) Method

BitmapLabel() public method

public BitmapLabel ( BitmapFont font ) : System
font System.Drawing.BitmapFont
return System
        public BitmapLabel(BitmapFont font)
        {
            if (font == null || font.Loaded == false)
                throw new NullReferenceException("font");

            _font = font;

            AutoSize = true;
        }