PowerArgs.Cli.ConsoleBitmap.ConsoleBitmap C# (CSharp) Method

ConsoleBitmap() public method

public ConsoleBitmap ( int x, int y, int w, int h, ConsoleCharacter bg = null ) : System
x int
y int
w int
h int
bg ConsoleCharacter
return System
        public ConsoleBitmap(int x, int y, int w, int h, ConsoleCharacter? bg = null)
            : this(new Rectangle(x,y,w,h), bg)
        {
        }

Same methods

ConsoleBitmap::ConsoleBitmap ( Rectangle bounds, ConsoleCharacter bg = null ) : System