[<<Previous Entry]
[^^Up^^]
[Next Entry>>]
[Menu]
[About The Guide]
_gtDispEnd()
Release the display buffer
------------------------------------------------------------------------------
C Prototype
#include "gt.api"
ERRCODE _gtDispEnd(void)
Returns
_gtDispEnd() returns zero if successful. Any other value indicates an
error.
Description
_gtDispEnd() informs the CA-Clipper display system of the end of a
series of display operations that have been buffered. Any pending
screen updates are performed after _gtDispEnd().
_gtDispBegin() and _gtDispEnd() calls are optional. For more
information, refer to _gtDispBegin().
Examples
. This example buffers screen output, updates the screen, then
displays the buffered screen output:
#include "gt.api"
.
.
.
_gtDispBegin(); // Start screen buffering
_gtSetPos(10, 10);
_gtWrite( "A display update", 17 );
_gtSetPos(11, 10)
_gtWrite( "Another display update", 22 )
_gtDispEnd() // Display buffered screen data
.
.
.
Files Library is CLIPPER.LIB, header file is Gt.api.
See Also:
_gtDispBegin()
_gtDispCount()
_gtGetPos()
_gtSetPos()
This page created by ng2html v1.05, the Norton guide to HTML conversion utility.
Written by Dave Pearson