getwindowwidth
- Syntax
-
#include <graphics.h> int getwindowwidth(void);
- Description
- The getwindowwidth function is available in the winbgim implementation of BGI graphics. The function returns the total width of the window including nondrawable border areas.
- Return Value
- getwindowwidth returns the total width of the window
- See also
- getmaxx
- getwindowheight
- getx
- getwindowheight
- Example
-
/* getwindowwidth example */ #include <graphics.h> int main(void) { int w_left, w_right; int width; // Total width of w_left; // Make two windows, side by side */ w_left = initwindow(300, 200); width = getwindowwidth( ); w_right = initwindow(300, 200, width, 0); /* clean up */ getch(); closegraph(); return 0; }
Back to index