Open In App

C# | How to change the WindowTop of the Console

Last Updated : 28 Jan, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
Given the normal Console in C#, the task is to change the WindowTop of the Console. Approach: This can be done using the WindowTop property in the Console class of the System package in C#. The WindowTop gets or sets the top position of the console window area relative to the screen buffer. Program 1: Getting the value of WindowTop csharp
// C# program to illustrate the
// Console.WindowTop Property
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace GFG {

class Program {

    static void Main(string[] args)
    {

        // Get the WindowTop
        Console.WriteLine("Current WindowTop: {0}",
                               Console.WindowTop);
    }
}
}
Output: Program 2: Setting the value of WindowTop csharp
// C# program to illustrate the
// Console.WindowTop Property
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace GFG {

class Program {

    static void Main(string[] args)
    {

        // Get the WindowWidth
        Console.WriteLine("Current WindowTop: {0}",
                               Console.WindowTop);

        // Set the WindowWidth
        Console.BufferHeight = 100;
        Console.WindowTop = 10;

        // Get the WindowWidth
        Console.Write("Current WindowTop: {0}",
                            Console.WindowTop);
    }
}
}
Output: Note: See the Vertical Scroll Bar at the right side of the Window in both the images.

Next Article
Article Tags :

Similar Reads