User Tools

Site Tools


c:graphics.h:getwindowheight

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

c:graphics.h:getwindowheight [2024/02/16 01:05] (current)
Line 1: Line 1:
 +===== getwindowheight =====
 +
 +
 +====Syntax of getwindowheight ==== 
 + <code c>
 +#include <graphics.h>
 +int getwindowheight(void);
 +  </code>
 +
 +
 +==== Description of getwindowheight ==== 
 +<code c>
 +The getwindowheight function is available in the winbgim implementation
 +of BGI graphics. The function returns the total height of the window
 +including nondrawable border areas.
 +</code>
 +
 +
 +==== Example of getwindowheight ====
 +<code c>
 +/* getwindowheight example */
 +#include <graphics.h>
 +
 +int main(void)
 +{
 +   int w_above, w_below;
 +   int height; // Total height of w_above;
 +
 +   // Make two windows, one on top of the other */
 +   w_above = initwindow(300, 200);
 +   height = getwindowheight( );
 +   w_below = initwindow(300, 200, 0, height);
 +
 +   /* clean up */
 +   getch();
 +   closegraph();
 +   return 0;
 +}
 +</code>
 +
 +
 +==== See also ====
 +[[getmaxy]]
 +[[getwindowwidth]]
 +[[gety]]
 +
 +
 +===== output of getwindowheight example ===== 
 +
 +    no output of example at the moment
 +    do not hesitate and add it...  
 +
 +
  

on the occasion of the current invasion of Russia in Ukraine

Russian Stop this War
c/graphics.h/getwindowheight.txt · Last modified: 2024/02/16 01:05 (external edit)

Impressum Datenschutz