Partilhar via


PreFlush Property

  Microsoft Speech Technologies Homepage

Gets or sets the PreFlush property value of Dtmf controls that reference the control. Read/write.

Usage

ASP.NET markup: <speech:DtmfControlSettings PreFlush="..." />
Get value: Boolean = DtmfControlSettings.PreFlush;
Set value: DtmfControlSettings.PreFlush = Boolean;
Data type: Boolean
Required: No

Remarks

For more information about the PreFlush property of the Dtmf control, see Dtmf.PreFlush.

Example

<form id="Form1" method="post" runat="server">
  ...
  <speech:SpeechControlSettings ID="AllSettings" runat="server">
    <Items>
      <speech:SpeechControlSettingsItem ID="Settings1" runat="server">
        ...
        <QA ... >
          ...
          <Dtmf
            InterDigitTimeout="2000"
            PreFlush="True"
            EndSilence="2000"
            InitialTimeout="1000"
            OnClientError="MyClientError"
            OnClientKeyPress="MyClientKeyPress"
            OnClientNoReco="MyClientNoReco"
            OnClientSilence="MyClientSilence">
          </Dtmf>
        <QA/>
        ...
      </speech:SpeechControlSettingsItem>
    </Items>
  </speech:SpeechControlSettings>
  ...
  <speech:QA Settings="Settings1" runat="server">
    <Dtmf ... >
      <!-- Dtmf contents --!>
    </Dtmf>
  </speech:Dtmf>
  ...
</form>

See Also

DtmfControlSettings Class | DtmfControlSettings Constructor | DtmfControlSettings Members | DtmfControlSettings Properties | DtmfControlSettings Methods