Shows how to use xtd::console::buffer_height and xtd::console::buffer_width methods.
#include <xtd/console>
auto main() -> int {
console::write_line("The current buffer height is {} rows.", console::buffer_height());
console::write_line("The current buffer width is {} columns.", console::buffer_width());
}
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.hpp:10