MSM-Workstation
Macros

Go back to the alphabetic list of macros
Go back to the first page of this tutorial

This section is for internal use only.

%%SendIt

This macro is replaced by code that causes an information record to be transmitted. The record in question is assumed to have been constructed using the macro %%AppendData.

Examples

Set %pdu=$C(#62,#80),%lvl=1,%lvls=2 ; initialize
Set %pdu=%pdu_$C(#A3,#80) ; add wFontRequest
Set %lvl=2,$P(%lvls,",",2)=4
%%AppendData($1,0) ; Add font face
%%AppendData($2,1) ; Add font size
%%AppendData($3,2) ; Add font style
%%AppendData($4,3) ; Add size units
%%SendIt ; Transmit request
The above sequence of code build a request, and transmits it. The request in this example corresponds to the function $WFONT.

See also

%%AppendData.