$FUNCNAME$
  SPACE()
$CATEGORY$
  STRING
$SUMMARY$
   Return a string of spaces
$LANG_RU$
     .
$SYNTAX$
     SPACE(<nCount>) --> cSpaces
$LANG_RU$
     SPACE(< >) -->  
$ARGUMENTS$
     <nCount> is the number of spaces to be returned, up to a maximum of
     65,535 (64 K).
$LANG_RU$
     < > -     .
      - 65535 (64).
$RETURNS$
     SPACE() returns a character string.  If <nCount> is zero, SPACE()
     returns a null string ("").
$LANG_RU$
     SPACE()   .    <
     >  , SPACE()     ("").
$DESCRIPTION$
     SPACE() is a character function that returns a specified number of
     spaces.  It is the same as REPLICATE("", <nCount>).  SPACE() can
     initialize a character variable before associating it with a GET.
     SPACE() can also pad strings with leading or trailing spaces.  Note,
     however, that the PADC(), PADL(), and PADR() functions are more
     effective for this purpose.
$LANG_RU$
     SPACE()     , 
       ,     . 
         REPLICATE(" ",< >).

     SPACE()       
        GET.  , SPACE()  
        ,   . 
      ,    PADC(), PADL()  PADR() 
        .
$EXAMPLES$
       This example uses SPACE() to initialize a variable for data
	input:

	USE Customer NEW
	MEMVAR->Name = SPACE(LEN(Customer->Name))
	@ 10,10 SAY "Customer Name" GET MEMVAR->Name
	READ
$LANG_RU$
          SPACE()  
          :

       USE Customer NEW
       MEMVAR->Name = SPACE(LEN(Customer->Name))
       @ 10, 10 SAY " :" GET MEMVAR->Name
       READ
$SEEALSO$
  PAD(),REPLICATE()
$END$
