InterDigitTimeout Property for French (Canada)
Gets or sets the time-out, in milliseconds, between telephone keypresses. Read/write.
Usage
ASP.NET markup: | <speech:IDtmf InterDigitTimeout="..." /> |
Get value: | Int = IDtmf.InterDigitTimeout; |
Set value: | IDtmf.InterDigitTimeout = Int; |
Data type: | Int |
Required: | No |
Remarks
If this time-out occurs, the Dtmf collection ends automatically. If the time-out is unspecified, InterDigitTimeout defaults to a Telephony Application Services internal setting. The control throws an exception if InterDigitTimeout is a non-integer or negative value.
The InterDigitTimeout property mirrors the interdigittimeout property on the SALT dtmf object.
Example
<form id="Form1" method="post" runat="server">
...
<speech:date
id="Date1"
QuestionPrompt="quand est-ce que vous aimeriez voyager?"
DateContext="Future"
AllowHolidays="True"
AllowNumeralDates="True"
AllowRelativeDates="True"
DaySemanticItem="DaySemItem"
MonthSemanticItem="MonthSemItem"
YearSemanticItem="YearSemItem"
ConfirmThreshold="0.6"
AllowDTMF="True"
InterDigitTimeout="5000"
runat="server">
</speech:date>
<asp:textbox id="tbDay" runat="server"></asp:textbox>
<asp:TextBox id="tbMonth" runat="server"></asp:TextBox>
<asp:TextBox id="tbYear" runat="server"></asp:TextBox>
...
</form>