[<<Previous Entry]
[^^Up^^]
[Next Entry>>]
[Menu]
[About The Guide]
aSend( aObject, cMsg, xParam1, .. xParamN )-> <xLastRet>
------------------------------------------------------------------------------
PARAMETER:
<aObject> Is an Array of all objects that will receive the message to
send
<cMsg> Is a message string, like "SetFocus", that will be send to
all objects in <aObject>
<xParam1..N> are optional parameters, if needed.
RETURNS:
<xLastRet> is the value that was returned by the last object in the
<aObject> Array.
DESCRIPTION:
aSend lets you send a string message to a number of objects. The target
objects have to be stored into the <aObject> array, and aSend performs
a oSend for every element.
EXAMPLE:
+--------------------------------------------------------------+
| /* Disable all embedded controls */ |
| ASend( oDlg:aControls, "DISABLE" ) |
+--------------------------------------------------------------+
See Also:
oSend
This page created by ng2html v1.05, the Norton guide to HTML conversion utility.
Written by Dave Pearson