Crestron simpl plus language ref 사용자 설명서

다운로드
페이지 374
Crestron SIMPL+
®
Software 
Language Reference Guide - DOC. 5797G
 SIMPL+
®
 
z 349
Description:
Changes the join number starting with the next STRING_INPUT or 
BUFFER_INPUT definition to the join number specified by <constant>. 
Example:
STRING_INPUT SIG1[20], SIG2[20], SIG3[20], SIG4[20];
BUFFER_INPUT B1$[20]
In this example, SIG1 references Join #1, SIG2 references Join #2, SIG3 references 
Join #3, SIG4 references Join #4, and B1$ references Join#5.
STRING_INPUT SIG1[20], SIG2[20];
#STRING_INPUT_JOIN 20
STRING_INPUT SIG3[20], SIG4[20];
BUFFER_INPUT B1$[20]
SIG1 and SIG2 still reference Join #1 and Join #2, but SIG3 has been changed to 
reference Join #20, SIG4 references Join #21, and B1$ references Join#22.
Version:
SIMPL+ Version 2.00
#STRING_OUTPUT_JOIN
Name:
#STRING_OUTPUT_JOIN
Syntax:
#STRING_OUTPUT_JOIN<constant>
Description:
Changes the join number starting with the next STRING_OUTPUT definition to the 
join number specified by <constant>. 
Example:
STRING_OUTPUT SIG1, SIG2, SIG3, SIG4;
In this example, SIG1 references Join #1, SIG2 references Join #2, SIG3 references 
Join #3, and SIG4 references Join #4.
STRING_OUTPUT SIG1, SIG2;
#STRING_OUTPUT_JOIN 20
STRING_OUTPUT SIG3, SIG4;
SIG1 and SIG2 still reference Join #1 and Join #2, but SIG3 has been changed to 
reference Join #20, and SIG4 references Join #21.