SadConsole.Consoles.Cursor.Constructor C# (CSharp) Method

Constructor() private method

private Constructor ( ) : void
return void
        private void Constructor()
        {
            IsVisible = false;
            AutomaticallyShiftRowsUp = true;

            PrintAppearance = new CellAppearance(Color.White, Color.Black);

            CursorRenderCell = new Cell();
            CursorRenderCell.GlyphIndex = _cursorCharacter;
            CursorRenderCell.Foreground = Color.White;
            CursorRenderCell.Background = Color.Transparent;

            ResetCursorEffect();
        }