System.Windows.Forms.BitmapLabel.BitmapLabel C# (CSharp) 메소드

BitmapLabel() 공개 메소드

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

            _font = font;

            AutoSize = true;
        }