Functions
Telephone Operate
- Ring is to wait incoming call, then to get caller ID and to wait ring times.
- Answer is to wait incoming call and answer it.
- Call is to make outgoing call.
- Play is to play wav file.
- Record is to record voice to wav file.
- Speech is to speak text using TTS(Text-To-Speech).
- ReceiveDTMF is to receive DTMF, can be set MaxLength and Endchar.
- SendDTMF is to send DTMF.
- Sleep is to pause a moment.
Flow Control
If is to judge condition, then to select True or False branch to continue.
Switch is to judge condition, then to select matched case branch to continue.
Case is used in switch, to jump to this branch, when condition is matched.
While is to repeat statements under it, when condition is true.
Block is only to perform statements under it.
Label is to define a position, let Goto statement to jump to it.
Goto is to change flow sequence, jump to Label.
Finish is to jump to End of flow to continue.
Restart is to jump over End of flow to continue.
Data Define and Operate
- Variant is to define a variable of varaint type.
- Operator is to operate Variant.
- String is to operate or convert string varaint.
- DateTime is to operate or convert datetime variant.
Access DataBase
- DataBase is to define a connnection of database.
- DBOperate is to operate DataBase.
- Filed is to get field value of current record.
- Command is to set commandtext of DataBase.
- Param is to set parameter of commandtext of database.