SemanticItem Property
Gets or sets a SemanticItemControlSettings control that sets property values of SemanticItem controls that reference it. Read/write.
Usage
ASP.NET markup: | <speech:SpeechControlSettingsItem SemanticItem="..." /> |
Get value: | SemanticItemControlSettings = SpeechControlSettingsItem.SemanticItem; |
Set value: | SpeechControlSettingsItem.SemanticItem = SemanticItemControlSettings; |
Data type: | SemanticItemControlSettings |
Required: | No |
Remarks
The SemanticItemControlSettings control can set the following properties of the SemanticItem control:
Example
<form id="Form1" method="post" runat="server">
...
<speech:SpeechControlSettings ID="AllSettings" runat="server">
<Items>
<speech:SpeechControlSettingsItem ID="Settings1" runat="server">
...
<SemanticItem
BindOnChanged="True"
BindAt="Server"
AutoPostBack="True"
SensitiveData="False"/>
...
</speech:SpeechControlSettingsItem>
</Items>
</speech:SpeechControlSettings>
...
<speech:SemanticMap runat="server">
<speech:SemanticItem Settings="Settings1"/>
</speech:SemanticMap>
...
</form>
See Also
SpeechControlSettingsItem Class | SpeechControlSettingsItem Constructor | SpeechControlSettingsItem Members | SpeechControlSettingsItem Properties | SpeechControlSettingsItem Methods | SpeechControlSettingsItem Events | SpeechControlSettingsItem Remarks