[Visual Basic]
Property VoiceCmdList As String
[C#]
public String VoiceCmdList{get;set;}
Description
Each voice command must be separated by one of the following delimiters:
DELIMITER ASCII CODE Vertical bar (pipe) character ( | ) <124> CR (Carriage Return) <13> CRLF (Carriage Return/Line Feed) <13><10>Example :
CListen.VoiceCmdList="david|john|peter" or CListen.VoiceCmdList="david" & vbCrLf &"john" & vbCrLf & "peter"
After set this property, uses VoiceCmdStart(VCMD_SOURCE_LIST) to start voice command.