$FUNCNAME$
  DISPEND()
$CATEGORY$
  TERMINAL/IO
$SUMMARY$
   Display buffered screen updates
$LANG_RU$
      .
$SYNTAX$
     DISPEND() --> NIL
$LANG_RU$
     DISPEND() --> NIL
$RETURNS$
     DISPEND() always returns NIL.
$LANG_RU$
     DISPEND()   NIL.
$DESCRIPTION$
     DISPEND() is a screen function that informs the xClipper display
     output system that the application has finished performing a series of
     display operations.

     DISPEND() is used with DISPBEGIN() so the display output system can
     buffer display updates.  This can be important for applications in which
     complex screen displays are slow and the appearance of performance is
     desired.
$LANG_RU$
     DISPEND() -  ,    
     xClipper,      
        .

     DISPEND(),     DISPBEGIN(), 
          .
          ,    
          .

          DISPBEGIN().
$EXAMPLES$
       This example buffers screen output, updates the screen, and
	then displays the buffered screen output:

	DISPBEGIN()            // Start screen buffering
	//
	SETPOS(10, 10)
	DISPOUT("A display update")
	SETPOS(11, 10)
	DISPOUT("Another display update")
	//
	DISPEND()               // Display buffered screen data
$LANG_RU$
           , 
       ,     :

       DISPBEGIN()              //   
       //
       SETPOS(10,10)
       DISPOUT(" ")
       SETPOS(11,10)
       DISPOUT("   ")
       //
       DISPEND()               //    
$SEEALSO$
  DISPBEGIN(),DISPCOUNT()
$END$
