PCOUNT()
From Recital Documentation Wiki
Revision as of 17:36, 3 December 2009 by Helengeorge (Talk | contribs)
Purpose
Function to return number of parameters passed
Syntax
PCOUNT()
See Also
FUNCTION, PARAMETERS, PROCEDURE, RETURN, SET PROCEDURE
Description
The PCOUNT() function is synonymous with the PARAMETERS() function. The PCOUNT() function returns the number of parameters passed to a procedure or function. These functions are useful for checking that the correct number of parameters has been passed to a procedure or function.
Example
function print parameter m_file,m_filter,m_options if pcount() <>3 set message to "3 parameters must be passed." return .F. else set filter to &m_filter report form &m_file &m_options to print set filter to endif return .T.
Products
Recital, Recital Server