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

PixelControl() public method

Creates a new pixel control
public PixelControl ( ) : System
return System
        public PixelControl()
        {
            Width = 1;
            Height = 1;
            SubscribeForLifetime(nameof(Bounds), EnsureNoResize, this.LifetimeManager);
            Value = new ConsoleCharacter(' ', Foreground, Background);
        }