Difference between revisions of "ADESC()"

From Lianjapedia
Jump to: navigation, search
 
 
(6 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
==Purpose==
 
==Purpose==
 
Function to fill an array with field descriptions
 
Function to fill an array with field descriptions
 
  
 
==Syntax==
 
==Syntax==
 
ADESC(<array>)
 
ADESC(<array>)
 
  
 
==See Also==
 
==See Also==
[[AADD()]], [[AAVERAGE()]], [[ABROWSE()]], [[ACHOICE()]], [[ACOL()]], [[ACOPY()]], [[ADEL()]], [[ADIR()]], [[AELEMENT()]], [[AFIELDS()]], [[AFILL()]], [[AINS()]], [[ALEN()]], [[AMAX()]], [[AMIN()]], [[APPEND FROM ARRAY]], [[AROW()]], [[ARRAY()]], [[ASCAN()]], [[ASIZE()]], [[ASORT()]], [[ASTORE()]], [[ASTRING()]], [[ASUBSCRIPT()]], [[ASUM()]], [[COPY TO ARRAY]], [[DBEDIT()]], [[DECLARE]], [[DIMENSION]], [[FCOUNT()]], [[FIELD()]], [[FIELDNAME()]], [[GATHER]], [[IN_ARRAY()]], [[IS_ARRAY()]], [[LABEL()]], [[LOCAL]], [[PRIVATE]], [[PUBLIC]], [[RELEASE]], [[RESTORE]], [[SAVE]], [[SCATTER]], [[NFCOUNT()]], [[SET FIELDS]]
+
[[AADD()]], [[AAVERAGE()]], [[ACOPY()]], [[ADEL()]], [[ADIR()]], [[AELEMENT()]], [[AFIELDS()]], [[AFILL()]], [[AINS()]], [[ALEN()]], [[AMAX()]], [[AMIN()]], [[APPEND FROM ARRAY]], [[ARRAY()]], [[ASCAN()]], [[ASIZE()]], [[ASORT()]], [[ASTORE()]], [[ASTRING()]], [[ASUBSCRIPT()]], [[ASUM()]], [[COPY TO ARRAY]], [[DECLARE]], [[DIMENSION]], [[FCOUNT()]], [[FIELD()]], [[FIELDINFO()]], [[FIELDNAME()]], [[GATHER]], [[IN_ARRAY()]], [[IS_ARRAY()]], [[LABEL()]], [[LOCAL]], [[PRIVATE]], [[PUBLIC]], [[RELEASE]], [[RESTORE]], [[SAVE]], [[SCATTER]], [[NFCOUNT()]], [[SET FIELDS]]
 
+
  
 
==Description==
 
==Description==
 
The ADESC() function fills the <array> with the field descriptions for the table in the current workarea.  The ADESC() function returns the number of fields in the current workarea.  The array must have been previously declared.  The field descriptions will be copied into the array elements until either the array is full or all the descriptions are copied.  The SET FIELDS command can be used to restrict the active fields and therefore determine which descriptions are copied into the array.
 
The ADESC() function fills the <array> with the field descriptions for the table in the current workarea.  The ADESC() function returns the number of fields in the current workarea.  The array must have been previously declared.  The field descriptions will be copied into the array elements until either the array is full or all the descriptions are copied.  The SET FIELDS command can be used to restrict the active fields and therefore determine which descriptions are copied into the array.
 
  
 
==Example==
 
==Example==
Line 19: Line 15:
 
declare headings[fcount()]
 
declare headings[fcount()]
 
adesc(headings)
 
adesc(headings)
dbedit(1, 1, 10, 79, "", "", "", headings)
 
 
</code>
 
</code>
  
 
==Products==
 
Recital Server, Recital
 
 
[[Category:Documentation]]
 
[[Category:Documentation]]
 
[[Category:Functions]]
 
[[Category:Functions]]
[[Category:Array Processing]]
 
 
[[Category:Array Processing Functions]]
 
[[Category:Array Processing Functions]]
 +
[[Category:Lianja VFP Extensions]]
 +
[[Category:VFP Function Extensions]]

Latest revision as of 05:06, 15 March 2016

Purpose

Function to fill an array with field descriptions

Syntax

ADESC(<array>)

See Also

AADD(), AAVERAGE(), ACOPY(), ADEL(), ADIR(), AELEMENT(), AFIELDS(), AFILL(), AINS(), ALEN(), AMAX(), AMIN(), APPEND FROM ARRAY, ARRAY(), ASCAN(), ASIZE(), ASORT(), ASTORE(), ASTRING(), ASUBSCRIPT(), ASUM(), COPY TO ARRAY, DECLARE, DIMENSION, FCOUNT(), FIELD(), FIELDINFO(), FIELDNAME(), GATHER, IN_ARRAY(), IS_ARRAY(), LABEL(), LOCAL, PRIVATE, PUBLIC, RELEASE, RESTORE, SAVE, SCATTER, NFCOUNT(), SET FIELDS

Description

The ADESC() function fills the <array> with the field descriptions for the table in the current workarea. The ADESC() function returns the number of fields in the current workarea. The array must have been previously declared. The field descriptions will be copied into the array elements until either the array is full or all the descriptions are copied. The SET FIELDS command can be used to restrict the active fields and therefore determine which descriptions are copied into the array.

Example

declare headings[fcount()]
adesc(headings)