xtd
1.0.0
Toggle main menu visibility
Loading...
Searching...
No Matches
console_buffer.cpp
Shows how to use
xtd::console::buffer_height
and
xtd::console::buffer_width
methods.
#include <xtd/xtd>
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());
}
// This code produces the following output :
//
// The current buffer height is 300 rows.
// The current buffer width is 85 columns.
Generated on
for xtd by
Gammasoft
. All rights reserved.