1<?xml version="1.0" encoding="utf-8"?>
2<Type Name="MenuItemBinding" FullName="System.Web.UI.WebControls.MenuItemBinding">
3  <TypeSignature Language="C#" Value="public sealed class MenuItemBinding : ICloneable, System.Web.UI.IDataSourceViewSchemaAccessor, System.Web.UI.IStateManager" />
4  <AssemblyInfo>
5    <AssemblyName>System.Web</AssemblyName>
6    <AssemblyVersion>2.0.0.0</AssemblyVersion>
7  </AssemblyInfo>
8  <Base>
9    <BaseTypeName>System.Object</BaseTypeName>
10  </Base>
11  <Interfaces>
12    <Interface>
13      <InterfaceName>System.ICloneable</InterfaceName>
14    </Interface>
15    <Interface>
16      <InterfaceName>System.Web.UI.IDataSourceViewSchemaAccessor</InterfaceName>
17    </Interface>
18    <Interface>
19      <InterfaceName>System.Web.UI.IStateManager</InterfaceName>
20    </Interface>
21  </Interfaces>
22  <Attributes>
23    <Attribute>
24      <AttributeName>System.ComponentModel.DefaultProperty("TextField")</AttributeName>
25    </Attribute>
26  </Attributes>
27  <Docs>
28    <since version=".NET 2.0" />
29    <remarks>
30      <attribution license="cc4" from="Microsoft" modified="false" />
31      <para>When the <see cref="T:System.Web.UI.WebControls.Menu" /> control is bound to a data source where each data item contains multiple fields (such as an XML element with several attributes), if no menu item bindings are defined, a menu item displays the value returned by the ToString() method of the data item by default. In the case of an XML element, the menu item displays the element name, which shows the underlying structure of the menu, but is not very useful otherwise. You can bind the properties of a menu item to a specific field by specifying menu item bindings. A <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object defines the relationship between each data item and the menu item it is binding to.</para>
32      <block subset="none" type="note">
33        <para>When the <see cref="T:System.Web.UI.WebControls.Menu" /> control is bound to a <see cref="T:System.Web.UI.WebControls.SiteMapDataSource" /> control, menu item bindings have no effect. Binding is performed automatically using the site map provider.</para>
34      </block>
35      <para>The <see cref="T:System.Web.UI.WebControls.Menu" /> control stores its <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> objects in the <see cref="P:System.Web.UI.WebControls.Menu.DataBindings" /> property and applies the bindings to the data source to create a one-to-one relationship between the menu hierarchy and the data source hierarchy. For each data item in the data source, the <see cref="T:System.Web.UI.WebControls.Menu" /> control attempts to match the data item to a <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object to create the corresponding <see cref="T:System.Web.UI.WebControls.MenuItem" /> object.</para>
36      <para>When creating a <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object, you must specify the criteria for binding. The criteria indicate when a data item should be bound to a menu item. You can specify the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.Depth" />, the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.DataMember" />, or both.</para>
37      <para>A menu item depth specifies the menu level that gets bound. For example, the following <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> declaration binds the Name and ID fields of the data source to the <see cref="P:System.Web.UI.WebControls.MenuItem.Text" /> and <see cref="P:System.Web.UI.WebControls.MenuItem.Value" /> properties, respectively, of all nodes with a depth of 0:</para>
38      <code>&lt;asp:MenuItemBinding Depth="0" TextField="Name" ValueField="ID"&gt;</code>
39      <para>A data member specifies the type of the data item in the underlying data source, but can represent different information depending on the data source. Each data item in a hierarchical data source (represented by an <see cref="T:System.Web.UI.IHierarchyData" /> object) exposes a <see cref="P:System.Web.UI.IHierarchyData.Type" /> property, which specifies the type of the data item. For example, the data member for an XML element specifies the name of the element. When a data source contains multiple data item types, the data member specifies which data item type to use. The following <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> declaration binds the &lt;Book&gt; elements of an <see cref="T:System.Web.UI.WebControls.XmlDataSource" /> control to all the menu items in the menu, regardless of the location in the hierarchy:</para>
40      <code>&lt;asp:MenuItemBinding DataMember="Book" TextField="Title" ValueField= "ISBN"&gt;</code>
41      <para>Sometimes you might need to create a menu item binding that specifies both a depth and a data member. This is often used when the data source contains items at different levels that have the same data member value. For example, you can have &lt;Item&gt; elements that appear at different levels within an XML file. The following <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> declarations show how to specify menu item bindings that apply to identical data members at different menu depths:</para>
42      <para>&lt;asp:MenuItemBinding DataMember="Item" Depth="1" TextField="Title"&gt;</para>
43      <para>&lt;asp:MenuItemBinding DataMember="Item" Depth="2" TextField="ISBN"&gt;</para>
44      <para>If a menu item binding is defined without a depth and a data member, the menu item binding is applied to all menu items within the menu. This is commonly used when all data items have the same properties and should be displayed identically, regardless of the menu depth.</para>
45      <para>After the binding criteria are established, you can then bind a property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object that can be bound to a value. You can bind to a field of a data item or to a static value. When bound to a static value, all <see cref="T:System.Web.UI.WebControls.MenuItem" /> objects to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied share the same value. Properties bound to fields contain the values of the corresponding field from the data source.</para>
46      <block subset="none" type="note">
47        <para>You can selectively override a bound property in a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object by setting the corresponding property directly.</para>
48      </block>
49      <para>The following table lists the properties of the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> class that allow you to bind a property of the <see cref="T:System.Web.UI.WebControls.MenuItem" /> object to a field of a data item.</para>
50      <list type="table">
51        <listheader>
52          <item>
53            <term>
54              <para>Property </para>
55            </term>
56            <description>
57              <para>Description </para>
58            </description>
59          </item>
60        </listheader>
61        <item>
62          <term>
63            <para>
64              <see cref="P:System.Web.UI.WebControls.MenuItemBinding.ImageUrlField" />
65            </para>
66          </term>
67          <description>
68            <para>The field to bind to the <see cref="P:System.Web.UI.WebControls.MenuItem.ImageUrl" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object. </para>
69          </description>
70        </item>
71        <item>
72          <term>
73            <para>
74              <see cref="P:System.Web.UI.WebControls.MenuItemBinding.NavigateUrlField" />
75            </para>
76          </term>
77          <description>
78            <para>The field to bind to the <see cref="P:System.Web.UI.WebControls.MenuItem.NavigateUrl" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object. </para>
79          </description>
80        </item>
81        <item>
82          <term>
83            <para>
84              <see cref="P:System.Web.UI.WebControls.MenuItemBinding.TextField" />
85            </para>
86          </term>
87          <description>
88            <para>The field to bind to the <see cref="P:System.Web.UI.WebControls.MenuItem.Text" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object. </para>
89          </description>
90        </item>
91        <item>
92          <term>
93            <para>
94              <see cref="P:System.Web.UI.WebControls.MenuItemBinding.ToolTipField" />
95            </para>
96          </term>
97          <description>
98            <para>The field to bind to the <see cref="P:System.Web.UI.WebControls.MenuItem.ToolTip" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object. </para>
99          </description>
100        </item>
101        <item>
102          <term>
103            <para>
104              <see cref="P:System.Web.UI.WebControls.MenuItemBinding.ValueField" />
105            </para>
106          </term>
107          <description>
108            <para>The field to bind to the <see cref="P:System.Web.UI.WebControls.MenuItem.Value" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object. </para>
109          </description>
110        </item>
111      </list>
112      <para>The following table lists the properties of the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> class that allow you to bind a property of the <see cref="T:System.Web.UI.WebControls.MenuItem" /> object to a static value.</para>
113      <list type="table">
114        <listheader>
115          <item>
116            <term>
117              <para>Property </para>
118            </term>
119            <description>
120              <para>Description </para>
121            </description>
122          </item>
123        </listheader>
124        <item>
125          <term>
126            <para>
127              <see cref="P:System.Web.UI.WebControls.MenuItemBinding.ImageUrl" /> </para>
128          </term>
129          <description>
130            <para>The static value to bind to the <see cref="P:System.Web.UI.WebControls.MenuItem.ImageUrl" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object. </para>
131          </description>
132        </item>
133        <item>
134          <term>
135            <para>
136              <see cref="P:System.Web.UI.WebControls.MenuItemBinding.NavigateUrl" /> </para>
137          </term>
138          <description>
139            <para>The static value to bind to the <see cref="P:System.Web.UI.WebControls.MenuItem.NavigateUrl" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object. </para>
140          </description>
141        </item>
142        <item>
143          <term>
144            <para>
145              <see cref="P:System.Web.UI.WebControls.MenuItemBinding.Target" /> </para>
146          </term>
147          <description>
148            <para>The static value to bind to the <see cref="P:System.Web.UI.WebControls.MenuItem.Target" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object. </para>
149          </description>
150        </item>
151        <item>
152          <term>
153            <para>
154              <see cref="P:System.Web.UI.WebControls.MenuItemBinding.Text" /> </para>
155          </term>
156          <description>
157            <para>The static value to bind to the <see cref="P:System.Web.UI.WebControls.MenuItem.Text" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object. </para>
158          </description>
159        </item>
160        <item>
161          <term>
162            <para>
163              <see cref="P:System.Web.UI.WebControls.MenuItemBinding.ToolTip" /> </para>
164          </term>
165          <description>
166            <para>The static value to bind to the <see cref="P:System.Web.UI.WebControls.MenuItem.ToolTip" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object. </para>
167          </description>
168        </item>
169        <item>
170          <term>
171            <para>
172              <see cref="P:System.Web.UI.WebControls.MenuItemBinding.Value" /> </para>
173          </term>
174          <description>
175            <para>The static value to bind to the <see cref="P:System.Web.UI.WebControls.MenuItem.Value" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object. </para>
176          </description>
177        </item>
178      </list>
179      <para>If conflicting <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> objects are defined, the <see cref="T:System.Web.UI.WebControls.Menu" /> control applies the menu item bindings in the following order of precedence: </para>
180      <list type="ordered">
181        <item>
182          <para>The <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object that defines and matches both a depth and a data member.</para>
183        </item>
184        <item>
185          <para>The <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object that defines and matches the data member only.</para>
186        </item>
187        <item>
188          <para>The <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object that defines and matches the depth only.</para>
189        </item>
190        <item>
191          <para>The <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object that defines neither the depth nor the data member. (This type of menu item binding is applied to all menu items in the menu.) </para>
192        </item>
193        <item>
194          <para>The <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object that does not have a match in the data source. In this case, the value returned by the ToString() method of the data item is then bound to the <see cref="P:System.Web.UI.WebControls.MenuItem.Text" /> and <see cref="P:System.Web.UI.WebControls.MenuItem.Value" /> properties of the menu items to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied.</para>
195        </item>
196      </list>
197      <para>The <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> class also allows you to format the text displayed in a menu item by setting the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.FormatString" /> property.</para>
198    </remarks>
199    <summary>
200      <attribution license="cc4" from="Microsoft" modified="false" />
201      <para>Defines the relationship between a data item and the menu item it is binding to in a <see cref="T:System.Web.UI.WebControls.Menu" /> control. This class cannot be inherited. </para>
202    </summary>
203  </Docs>
204  <Members>
205    <Member MemberName=".ctor">
206      <MemberSignature Language="C#" Value="public MenuItemBinding ();" />
207      <MemberType>Constructor</MemberType>
208      <Parameters />
209      <Docs>
210        <since version=".NET 2.0" />
211        <remarks>
212          <attribution license="cc4" from="Microsoft" modified="false" />
213          <para>Use this constructor to create a new instance of the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> class. It is often used when dynamically populating the <see cref="P:System.Web.UI.WebControls.Menu.DataBindings" /> collection of a <see cref="T:System.Web.UI.WebControls.Menu" /> control.</para>
214        </remarks>
215        <summary>
216          <attribution license="cc4" from="Microsoft" modified="false" />
217          <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> class. </para>
218        </summary>
219      </Docs>
220      <AssemblyInfo>
221        <AssemblyVersion>2.0.0.0</AssemblyVersion>
222      </AssemblyInfo>
223    </Member>
224    <Member MemberName="DataMember">
225      <MemberSignature Language="C#" Value="public string DataMember { set; get; }" />
226      <MemberType>Property</MemberType>
227      <Attributes>
228        <Attribute>
229          <AttributeName>System.ComponentModel.DefaultValue("")</AttributeName>
230        </Attribute>
231      </Attributes>
232      <ReturnValue>
233        <ReturnType>System.String</ReturnType>
234      </ReturnValue>
235      <Docs>
236        <value>To be added.</value>
237        <since version=".NET 2.0" />
238        <remarks>
239          <attribution license="cc4" from="Microsoft" modified="false" />
240          <para>When creating a <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object, you must specify the criteria for binding. The criteria indicate when a data item should be bound to a menu item. You can specify the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.Depth" /> property, the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.DataMember" /> property, or both.</para>
241          <para>When the data source contains multiple elements or tables, use the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.DataMember" /> property to specify the element or table to bind to a menu item. A data member specifies the type of the data item in the underlying data source, but can represent different information depending on the data source. Each data item in a hierarchical data source (represented by a <see cref="T:System.Web.UI.IHierarchyData" /> object) exposes a <see cref="P:System.Web.UI.IHierarchyData.Type" /> property, which specifies the type of the data item. For example, the data member for an XML element specifies the name of the element. The following <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> declaration binds the &lt;Book&gt; elements of an <see cref="T:System.Web.UI.WebControls.XmlDataSource" /> control to all the menu items in the menu, regardless of the location in the hierarchy: </para>
242          <code>&lt;asp:MenuItemBinding DataMember="Book" TextField="Title" ValueField= "ISBN"&gt;</code>
243          <para>Sometimes you might need to create a menu item binding that specifies both a depth and a data member. This is often used when the data source contains items at different levels that have the same data member value. For example, you can have &lt;Item&gt; elements that appear at different levels within an XML file. The following <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> declarations show how to specify menu item bindings that apply to identical data members at different menu depths:</para>
244          <para>&lt;asp:MenuItemBinding DataMember="Item" Depth="1" TextField="Title"&gt;</para>
245          <para>&lt;asp:MenuItemBinding DataMember="Item" Depth="2" TextField="ISBN"&gt;</para>
246          <para>If a menu item binding is defined without a depth or a data member, the menu item binding is applied to all menu items within the menu. This is commonly used when all data items have the same properties and should be displayed identically, regardless of the menu depth.</para>
247          <para>After the binding criteria are established, you can then bind a property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object that can be bound to a value. You can bind to a field of a data item or to a static value. When bound to a static value, all <see cref="T:System.Web.UI.WebControls.MenuItem" /> objects to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied share the same value. Properties bound to fields contain the values of the field from the data source.</para>
248          <para>If conflicting <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> objects are defined, the <see cref="T:System.Web.UI.WebControls.Menu" /> control applies the menu item bindings in the following order of precedence: </para>
249          <list type="ordered">
250            <item>
251              <para>The <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object that defines and matches both a depth and a data member.</para>
252            </item>
253            <item>
254              <para>The <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object that defines and matches the data member only.</para>
255            </item>
256            <item>
257              <para>The <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object that defines and matches the depth only.</para>
258            </item>
259            <item>
260              <para>The <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object that defines neither the depth nor the data member. (This type of menu item binding is applied to all menu items in the menu.) </para>
261            </item>
262            <item>
263              <para>The <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object that does not have a match in the data source. In this case, the value returned by the ToString() method of the data item is then bound to the <see cref="P:System.Web.UI.WebControls.MenuItem.Text" /> and <see cref="P:System.Web.UI.WebControls.MenuItem.Value" /> properties of the menu items to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied.</para>
264            </item>
265          </list>
266        </remarks>
267        <summary>
268          <attribution license="cc4" from="Microsoft" modified="false" />
269          <para>Gets or sets the data member to bind to a menu item.</para>
270        </summary>
271      </Docs>
272      <AssemblyInfo>
273        <AssemblyVersion>2.0.0.0</AssemblyVersion>
274      </AssemblyInfo>
275    </Member>
276    <Member MemberName="Depth">
277      <MemberSignature Language="C#" Value="public int Depth { set; get; }" />
278      <MemberType>Property</MemberType>
279      <Attributes>
280        <Attribute>
281          <AttributeName>System.ComponentModel.DefaultValue(-1)</AttributeName>
282        </Attribute>
283      </Attributes>
284      <ReturnValue>
285        <ReturnType>System.Int32</ReturnType>
286      </ReturnValue>
287      <Docs>
288        <value>To be added.</value>
289        <since version=".NET 2.0" />
290        <remarks>
291          <attribution license="cc4" from="Microsoft" modified="false" />
292          <para>When creating a <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object, you must specify the criteria for binding. The criteria indicate when a data item should be bound to a menu item. You can specify the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.Depth" /> property, the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.DataMember" /> property, or both.</para>
293          <para>Use the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.Depth" /> property to specify the menu depth at which to apply the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object. For example, the following <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> declaration binds the Name and ID fields of the data source to the <see cref="P:System.Web.UI.WebControls.MenuItem.Text" /> and <see cref="P:System.Web.UI.WebControls.MenuItem.Value" /> properties, respectively, of all menu items with a depth of 0:</para>
294          <code>&lt;asp:MenuItemBinding Depth="0" TextField="Name" ValueField="ID"&gt;</code>
295          <para>Sometimes you might need to create a menu item binding that specifies both a depth and a data member. This is often used when the data source contains items at different levels that have the same data member value. For example, you can have &lt;Item&gt; elements that appear at different levels within an XML file. The following <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> declarations show how to specify menu item bindings that apply to identical data members at different menu depths:</para>
296          <para>&lt;asp:MenuItemBinding DataMember="Item" Depth="1" TextField="Title"&gt;</para>
297          <para>&lt;asp:MenuItemBinding DataMember="Item" Depth="2" TextField="ISBN"&gt;</para>
298          <para>If a menu item binding is defined without a depth and a data member, the menu item binding is applied to all menu items within the menu. This is commonly used when all data items have the same properties and should be displayed identically, regardless of the menu depth.</para>
299          <para>After the binding criteria are established, you can then bind a property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object that can be bound to a value. You can bind to a field of a data item or to a static value. When bound to a static value, all <see cref="T:System.Web.UI.WebControls.MenuItem" /> objects to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied share the same value. Properties bound to fields contain the values of the field from the data source.</para>
300          <para>If conflicting <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> objects are defined, the <see cref="T:System.Web.UI.WebControls.Menu" /> control applies the menu item bindings in the following order of precedence: </para>
301          <list type="ordered">
302            <item>
303              <para>The <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object that defines and matches both a depth and a data member.</para>
304            </item>
305            <item>
306              <para>The <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object that defines and matches the data member only.</para>
307            </item>
308            <item>
309              <para>The <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object that defines and matches the depth only.</para>
310            </item>
311            <item>
312              <para>The <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object that defines neither the depth nor the data member. (This type of menu item binding is applied to all menu items in the menu.) </para>
313            </item>
314            <item>
315              <para>The <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object that does not have a match in the data source. In this case, the value returned by the ToString() method of the data item is then bound to the <see cref="P:System.Web.UI.WebControls.MenuItem.Text" /> and <see cref="P:System.Web.UI.WebControls.MenuItem.Value" /> properties of the menu items to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied.</para>
316            </item>
317          </list>
318        </remarks>
319        <summary>
320          <attribution license="cc4" from="Microsoft" modified="false" />
321          <para>Gets or sets the menu depth to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied.</para>
322        </summary>
323      </Docs>
324      <AssemblyInfo>
325        <AssemblyVersion>2.0.0.0</AssemblyVersion>
326      </AssemblyInfo>
327    </Member>
328    <Member MemberName="Enabled">
329      <MemberSignature Language="C#" Value="public bool Enabled { set; get; }" />
330      <MemberType>Property</MemberType>
331      <Attributes>
332        <Attribute>
333          <AttributeName>System.ComponentModel.DefaultValue(true)</AttributeName>
334        </Attribute>
335      </Attributes>
336      <ReturnValue>
337        <ReturnType>System.Boolean</ReturnType>
338      </ReturnValue>
339      <Docs>
340        <value>To be added.</value>
341        <since version=".NET 2.0" />
342        <remarks>
343          <attribution license="cc4" from="Microsoft" modified="false" />
344          <para>Use the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.Enabled" /> property to set the <see cref="P:System.Web.UI.WebControls.MenuItem.Enabled" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object. This setting is shared with all menu items to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied. When this property is set to false, the menu item is disabled and no pop-out image that indicates child items is displayed. Setting this property to false for a menu item essentially makes the menu item the end of that node, where no further levels are shown off of that node.</para>
345        </remarks>
346        <summary>
347          <attribution license="cc4" from="Microsoft" modified="false" />
348          <para>Gets or sets a value that indicates whether the menu item to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied is enabled, allowing the item to display a pop-out image and any child menu items.</para>
349        </summary>
350      </Docs>
351      <AssemblyInfo>
352        <AssemblyVersion>2.0.0.0</AssemblyVersion>
353      </AssemblyInfo>
354    </Member>
355    <Member MemberName="EnabledField">
356      <MemberSignature Language="C#" Value="public string EnabledField { set; get; }" />
357      <MemberType>Property</MemberType>
358      <Attributes>
359        <Attribute>
360          <AttributeName>System.ComponentModel.TypeConverter("System.Web.UI.Design.DataSourceViewSchemaConverter, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")</AttributeName>
361        </Attribute>
362        <Attribute>
363          <AttributeName>System.ComponentModel.DefaultValue("")</AttributeName>
364        </Attribute>
365      </Attributes>
366      <ReturnValue>
367        <ReturnType>System.String</ReturnType>
368      </ReturnValue>
369      <Docs>
370        <value>To be added.</value>
371        <since version=".NET 2.0" />
372        <remarks>
373          <attribution license="cc4" from="Microsoft" modified="false" />
374          <para>When the <see cref="T:System.Web.UI.WebControls.Menu" /> control is bound to a data source, use the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.EnabledField" /> property to specify the name of the field to bind to the <see cref="P:System.Web.UI.WebControls.MenuItem.Enabled" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object.</para>
375          <block subset="none" type="note">
376            <para> You can override the enabling of an individual menu item by setting its <see cref="P:System.Web.UI.WebControls.MenuItem.Enabled" /> property directly.</para>
377          </block>
378          <para>If the data source contains multiple tables or attributes, you must first establish the binding criteria by setting the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.Depth" /> property, the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.DataMember" /> property, or both.</para>
379          <block subset="none" type="note">
380            <para>If the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.Enabled" /> and <see cref="P:System.Web.UI.WebControls.MenuItemBinding.EnabledField" /> properties are both set, the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.EnabledField" /> property takes precedence.</para>
381          </block>
382        </remarks>
383        <summary>
384          <attribution license="cc4" from="Microsoft" modified="false" />
385          <para>Gets or sets the name of the field from the data source to bind to the <see cref="P:System.Web.UI.WebControls.MenuItem.Enabled" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied. </para>
386        </summary>
387      </Docs>
388      <AssemblyInfo>
389        <AssemblyVersion>2.0.0.0</AssemblyVersion>
390      </AssemblyInfo>
391    </Member>
392    <Member MemberName="FormatString">
393      <MemberSignature Language="C#" Value="public string FormatString { set; get; }" />
394      <MemberType>Property</MemberType>
395      <Attributes>
396        <Attribute>
397          <AttributeName>System.ComponentModel.DefaultValue("")</AttributeName>
398        </Attribute>
399        <Attribute>
400          <AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
401        </Attribute>
402      </Attributes>
403      <ReturnValue>
404        <ReturnType>System.String</ReturnType>
405      </ReturnValue>
406      <Docs>
407        <value>To be added.</value>
408        <since version=".NET 2.0" />
409        <remarks>
410          <attribution license="cc4" from="Microsoft" modified="false" />
411          <para>The <see cref="P:System.Web.UI.WebControls.MenuItemBinding.FormatString" /> property is used to provide a custom format for a menu item's text. The format string can consist of a literal string, a placeholder, or both. The literal string is displayed verbatim, while the placeholder is replaced with the value that is bound to the menu item's text.</para>
412          <para>The placeholder is split into two parts, separated by a colon, in the form {<paramref name="A" />:<paramref name="Bxx" />}. For example, {0:F2} displays a fixed-point number with two decimal places.</para>
413          <block subset="none" type="note">
414            <para>The placeholder string must be enclosed in braces to indicate that it is a placeholder and not a literal string. Any text outside the braces is displayed as literal text.</para>
415          </block>
416          <para>Keeping to the standard formatting string syntax, the value before the colon (<paramref name="A" /> in the general example) specifies the parameter index in a zero-based list of parameters. Because only one value can be displayed in each menu item, the parameter index can be set only to 0.</para>
417          <para>The character after the colon (<paramref name="B" /> in the general example) specifies the display format for the value. The following table lists the common formats.</para>
418          <list type="table">
419            <listheader>
420              <item>
421                <term>
422                  <para>Format character </para>
423                </term>
424                <description>
425                  <para>Description </para>
426                </description>
427              </item>
428            </listheader>
429            <item>
430              <term>
431                <para>C</para>
432              </term>
433              <description>
434                <para>Displays numeric values in currency format.</para>
435              </description>
436            </item>
437            <item>
438              <term>
439                <para>D</para>
440              </term>
441              <description>
442                <para>Displays numeric values in decimal format.</para>
443              </description>
444            </item>
445            <item>
446              <term>
447                <para>E</para>
448              </term>
449              <description>
450                <para>Displays numeric values in scientific (exponential) format.</para>
451              </description>
452            </item>
453            <item>
454              <term>
455                <para>F</para>
456              </term>
457              <description>
458                <para>Displays numeric values in fixed format.</para>
459              </description>
460            </item>
461            <item>
462              <term>
463                <para>G</para>
464              </term>
465              <description>
466                <para>Displays numeric values in general format.</para>
467              </description>
468            </item>
469            <item>
470              <term>
471                <para>N</para>
472              </term>
473              <description>
474                <para>Displays numeric values in number format.</para>
475              </description>
476            </item>
477            <item>
478              <term>
479                <para>X</para>
480              </term>
481              <description>
482                <para>Displays numeric values in hexadecimal format.</para>
483              </description>
484            </item>
485          </list>
486          <block subset="none" type="note">
487            <para>The format characters are not case-sensitive, except for X, which displays the hexadecimal characters in the case specified.</para>
488          </block>
489          <para>The value after the format character (<paramref name="xx" /> in the general example) specifies the number of significant digits or decimal places to display.</para>
490          <para>For more information on formatting strings, see <format type="text/html"><a href="0D1364DA-5B30-4D42-8E6B-03378343343F">Formatting Overview</a></format>.</para>
491          <para>The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see <see cref="T:System.ComponentModel.LocalizableAttribute" /> and <format type="text/html"><a href="8ef3838e-9d05-4236-9dd0-ceecff9df80d">ASP.NET Globalization and Localization</a></format>.</para>
492        </remarks>
493        <summary>
494          <attribution license="cc4" from="Microsoft" modified="false" />
495          <para>Gets or sets the string that specifies the display format for the text of a menu item to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied.</para>
496        </summary>
497      </Docs>
498      <AssemblyInfo>
499        <AssemblyVersion>2.0.0.0</AssemblyVersion>
500      </AssemblyInfo>
501    </Member>
502    <Member MemberName="ImageUrl">
503      <MemberSignature Language="C#" Value="public string ImageUrl { set; get; }" />
504      <MemberType>Property</MemberType>
505      <Attributes>
506        <Attribute>
507          <AttributeName>System.ComponentModel.Editor("System.Web.UI.Design.ImageUrlEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof(System.Drawing.Design.UITypeEditor))</AttributeName>
508        </Attribute>
509        <Attribute>
510          <AttributeName>System.Web.UI.UrlProperty</AttributeName>
511        </Attribute>
512        <Attribute>
513          <AttributeName>System.ComponentModel.DefaultValue("")</AttributeName>
514        </Attribute>
515      </Attributes>
516      <ReturnValue>
517        <ReturnType>System.String</ReturnType>
518      </ReturnValue>
519      <Docs>
520        <value>To be added.</value>
521        <since version=".NET 2.0" />
522        <remarks>
523          <attribution license="cc4" from="Microsoft" modified="false" />
524          <para>When the <see cref="T:System.Web.UI.WebControls.Menu" /> control is bound to a data source, use the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.ImageUrl" /> property to specify the URL of a custom image to bind to the <see cref="P:System.Web.UI.WebControls.MenuItem.ImageUrl" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object. This image is shared with all <see cref="T:System.Web.UI.WebControls.MenuItem" /> objects to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied. The image is displayed next to a menu item's text and can be in any file format (.jpg, .gif, .bmp, and so on), as long as the client's browser supports that format.</para>
525          <block subset="none" type="note">
526            <para>You can override the image for an individual menu item by setting its <see cref="P:System.Web.UI.WebControls.MenuItem.ImageUrl" /> property directly.</para>
527          </block>
528          <para>Instead of using this property to display the same image in each menu item, you can also use the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.ImageUrlField" /> property to bind the <see cref="P:System.Web.UI.WebControls.MenuItem.ImageUrl" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object to a field of a data source. When rendered, the <see cref="P:System.Web.UI.WebControls.MenuItem.ImageUrl" /> property of each menu item to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied contains the corresponding value from the field.</para>
529          <block subset="none" type="note">
530            <para>If the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.ImageUrl" /> and <see cref="P:System.Web.UI.WebControls.MenuItemBinding.ImageUrlField" /> properties are both set, the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.ImageUrlField" /> property takes precedence.</para>
531          </block>
532        </remarks>
533        <summary>
534          <attribution license="cc4" from="Microsoft" modified="false" />
535          <para>Gets or sets the URL to an image that is displayed next to the text of a menu item to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied.</para>
536        </summary>
537      </Docs>
538      <AssemblyInfo>
539        <AssemblyVersion>2.0.0.0</AssemblyVersion>
540      </AssemblyInfo>
541    </Member>
542    <Member MemberName="ImageUrlField">
543      <MemberSignature Language="C#" Value="public string ImageUrlField { set; get; }" />
544      <MemberType>Property</MemberType>
545      <Attributes>
546        <Attribute>
547          <AttributeName>System.ComponentModel.TypeConverter("System.Web.UI.Design.DataSourceViewSchemaConverter, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")</AttributeName>
548        </Attribute>
549        <Attribute>
550          <AttributeName>System.ComponentModel.DefaultValue("")</AttributeName>
551        </Attribute>
552      </Attributes>
553      <ReturnValue>
554        <ReturnType>System.String</ReturnType>
555      </ReturnValue>
556      <Docs>
557        <value>To be added.</value>
558        <since version=".NET 2.0" />
559        <remarks>
560          <attribution license="cc4" from="Microsoft" modified="false" />
561          <para>When the <see cref="T:System.Web.UI.WebControls.Menu" /> control is bound to a data source, use the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.ImageUrlField" /> property to specify the name of the field to bind to the <see cref="P:System.Web.UI.WebControls.MenuItem.ImageUrl" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object. When rendered, the <see cref="P:System.Web.UI.WebControls.MenuItem.ImageUrl" /> property of each menu item to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied contains the corresponding value from the field. The image is displayed next to a menu item's text and can be in any file format (.jpg, .gif, .bmp, and so on), as long as the client's browser supports that format.</para>
562          <block subset="none" type="note">
563            <para> You can override the image for an individual menu item by setting its <see cref="P:System.Web.UI.WebControls.MenuItem.ImageUrl" /> property directly.</para>
564          </block>
565          <para>If the data source contains multiple tables or attributes, you must first establish the binding criteria by setting the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.Depth" /> property, the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.DataMember" /> property, or both.</para>
566          <para>Instead of using this property to bind the <see cref="P:System.Web.UI.WebControls.MenuItem.ImageUrl" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object to a field, you can also bind it to a static value by setting the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.ImageUrl" /> property. This allows you to display the same image in each menu item to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied.</para>
567          <block subset="none" type="note">
568            <para>If the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.ImageUrl" /> and <see cref="P:System.Web.UI.WebControls.MenuItemBinding.ImageUrlField" /> properties are both set, the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.ImageUrlField" /> property takes precedence.</para>
569          </block>
570        </remarks>
571        <summary>
572          <attribution license="cc4" from="Microsoft" modified="false" />
573          <para>Gets or sets the name of the field from the data source to bind to the <see cref="P:System.Web.UI.WebControls.MenuItem.ImageUrl" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied.</para>
574        </summary>
575      </Docs>
576      <AssemblyInfo>
577        <AssemblyVersion>2.0.0.0</AssemblyVersion>
578      </AssemblyInfo>
579    </Member>
580    <Member MemberName="NavigateUrl">
581      <MemberSignature Language="C#" Value="public string NavigateUrl { set; get; }" />
582      <MemberType>Property</MemberType>
583      <Attributes>
584        <Attribute>
585          <AttributeName>System.ComponentModel.Editor("System.Web.UI.Design.UrlEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof(System.Drawing.Design.UITypeEditor))</AttributeName>
586        </Attribute>
587        <Attribute>
588          <AttributeName>System.Web.UI.UrlProperty</AttributeName>
589        </Attribute>
590        <Attribute>
591          <AttributeName>System.ComponentModel.DefaultValue("")</AttributeName>
592        </Attribute>
593      </Attributes>
594      <ReturnValue>
595        <ReturnType>System.String</ReturnType>
596      </ReturnValue>
597      <Docs>
598        <value>To be added.</value>
599        <since version=".NET 2.0" />
600        <remarks>
601          <attribution license="cc4" from="Microsoft" modified="false" />
602          <para>When the <see cref="T:System.Web.UI.WebControls.Menu" /> control is bound to a data source, use the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.NavigateUrl" /> property to specify the URL to bind to the <see cref="P:System.Web.UI.WebControls.MenuItem.NavigateUrl" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object. This URL is shared with all menu items to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied. When the user clicks the menu item, the user is taken to the specified URL.</para>
603          <block subset="none" type="note">
604            <para>You can override the URL for an individual menu item by setting its <see cref="P:System.Web.UI.WebControls.MenuItem.NavigateUrl" /> property directly.</para>
605          </block>
606          <para>Instead of using this property to navigate to the same URL in each menu item, you can also bind the <see cref="P:System.Web.UI.WebControls.MenuItem.NavigateUrl" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object to a field of a data source by setting the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.NavigateUrlField" /> property. When rendered, the <see cref="P:System.Web.UI.WebControls.MenuItem.NavigateUrl" /> property of each menu item to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied contains the corresponding value from the field.</para>
607          <block subset="none" type="note">
608            <para>If the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.NavigateUrl" /> and <see cref="P:System.Web.UI.WebControls.MenuItemBinding.NavigateUrlField" /> properties are both set, the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.NavigateUrlField" /> property takes precedence.</para>
609          </block>
610        </remarks>
611        <summary>
612          <attribution license="cc4" from="Microsoft" modified="false" />
613          <para>Gets or sets the URL to link to when a menu item to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied is clicked.</para>
614        </summary>
615      </Docs>
616      <AssemblyInfo>
617        <AssemblyVersion>2.0.0.0</AssemblyVersion>
618      </AssemblyInfo>
619    </Member>
620    <Member MemberName="NavigateUrlField">
621      <MemberSignature Language="C#" Value="public string NavigateUrlField { set; get; }" />
622      <MemberType>Property</MemberType>
623      <Attributes>
624        <Attribute>
625          <AttributeName>System.ComponentModel.TypeConverter("System.Web.UI.Design.DataSourceViewSchemaConverter, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")</AttributeName>
626        </Attribute>
627        <Attribute>
628          <AttributeName>System.ComponentModel.DefaultValue("")</AttributeName>
629        </Attribute>
630      </Attributes>
631      <ReturnValue>
632        <ReturnType>System.String</ReturnType>
633      </ReturnValue>
634      <Docs>
635        <value>To be added.</value>
636        <since version=".NET 2.0" />
637        <remarks>
638          <attribution license="cc4" from="Microsoft" modified="false" />
639          <para>When the <see cref="T:System.Web.UI.WebControls.Menu" /> control is bound to a data source, use the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.NavigateUrlField" /> property to specify the name of the field to bind to the <see cref="P:System.Web.UI.WebControls.MenuItem.NavigateUrl" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object. When rendered, the <see cref="P:System.Web.UI.WebControls.MenuItem.NavigateUrl" /> property of each menu item to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied contains the corresponding value from the field. The user is taken to the corresponding URL when the menu item is clicked.</para>
640          <block subset="none" type="note">
641            <para>You can override the URL for an individual menu item by setting its <see cref="P:System.Web.UI.WebControls.MenuItem.NavigateUrl" /> property directly.</para>
642          </block>
643          <para>If the data source contains multiple tables or attributes, you must first establish the binding criteria by setting the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.Depth" /> property, the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.DataMember" /> property, or both.</para>
644          <para>Instead of using this property to bind the <see cref="P:System.Web.UI.WebControls.MenuItem.NavigateUrl" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object to a field, you can also bind it to a static value by setting the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.NavigateUrl" /> property. This allows you to navigate to the same URL from each menu item to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied.</para>
645          <block subset="none" type="note">
646            <para>If the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.NavigateUrl" /> and <see cref="P:System.Web.UI.WebControls.MenuItemBinding.NavigateUrlField" /> properties are both set, the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.NavigateUrlField" /> property takes precedence.</para>
647          </block>
648        </remarks>
649        <summary>
650          <attribution license="cc4" from="Microsoft" modified="false" />
651          <para>Gets or sets the name of the field from the data source to bind to the <see cref="P:System.Web.UI.WebControls.MenuItem.NavigateUrl" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied.</para>
652        </summary>
653      </Docs>
654      <AssemblyInfo>
655        <AssemblyVersion>2.0.0.0</AssemblyVersion>
656      </AssemblyInfo>
657    </Member>
658    <Member MemberName="PopOutImageUrl">
659      <MemberSignature Language="C#" Value="public string PopOutImageUrl { set; get; }" />
660      <MemberType>Property</MemberType>
661      <Attributes>
662        <Attribute>
663          <AttributeName>System.ComponentModel.Editor("System.Web.UI.Design.UrlEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof(System.Drawing.Design.UITypeEditor))</AttributeName>
664        </Attribute>
665        <Attribute>
666          <AttributeName>System.Web.UI.UrlProperty</AttributeName>
667        </Attribute>
668        <Attribute>
669          <AttributeName>System.ComponentModel.DefaultValue("")</AttributeName>
670        </Attribute>
671      </Attributes>
672      <ReturnValue>
673        <ReturnType>System.String</ReturnType>
674      </ReturnValue>
675      <Docs>
676        <value>To be added.</value>
677        <since version=".NET 2.0" />
678        <remarks>
679          <attribution license="cc4" from="Microsoft" modified="false" />
680          <para>When the <see cref="T:System.Web.UI.WebControls.Menu" /> control is bound to a data source, use the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.PopOutImageUrl" /> property to specify the URL of a <see cref="P:System.Web.UI.WebControls.MenuItem.PopOutImageUrl" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object. This URL is shared with all menu items to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied.</para>
681          <block subset="none" type="note">
682            <para>You can override the URL for an individual menu item by setting its <see cref="P:System.Web.UI.WebControls.MenuItem.PopOutImageUrl" /> property directly.</para>
683          </block>
684          <para>You can bind the <see cref="P:System.Web.UI.WebControls.MenuItem.PopOutImageUrl" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object to a field of a data source by setting the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.PopOutImageUrlField" /> property. When rendered, the <see cref="P:System.Web.UI.WebControls.MenuItem.PopOutImageUrl" /> property of each menu item to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied contains the corresponding value from the field.</para>
685          <block subset="none" type="note">
686            <para>If the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.PopOutImageUrl" /> and <see cref="P:System.Web.UI.WebControls.MenuItemBinding.PopOutImageUrlField" /> properties are both set, the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.PopOutImageUrlField" /> property takes precedence.</para>
687          </block>
688        </remarks>
689        <summary>
690          <attribution license="cc4" from="Microsoft" modified="false" />
691          <para>Gets or sets the URL to an image that indicates the presence of a dynamic submenu for a menu item to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied.</para>
692        </summary>
693      </Docs>
694      <AssemblyInfo>
695        <AssemblyVersion>2.0.0.0</AssemblyVersion>
696      </AssemblyInfo>
697    </Member>
698    <Member MemberName="PopOutImageUrlField">
699      <MemberSignature Language="C#" Value="public string PopOutImageUrlField { set; get; }" />
700      <MemberType>Property</MemberType>
701      <Attributes>
702        <Attribute>
703          <AttributeName>System.ComponentModel.TypeConverter("System.Web.UI.Design.DataSourceViewSchemaConverter, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")</AttributeName>
704        </Attribute>
705        <Attribute>
706          <AttributeName>System.ComponentModel.DefaultValue("")</AttributeName>
707        </Attribute>
708      </Attributes>
709      <ReturnValue>
710        <ReturnType>System.String</ReturnType>
711      </ReturnValue>
712      <Docs>
713        <value>To be added.</value>
714        <since version=".NET 2.0" />
715        <remarks>
716          <attribution license="cc4" from="Microsoft" modified="false" />
717          <para>When the <see cref="T:System.Web.UI.WebControls.Menu" /> control is bound to a data source, use the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.PopOutImageUrlField" /> property to specify the name of the field to bind to the <see cref="P:System.Web.UI.WebControls.MenuItem.PopOutImageUrl" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object. When rendered, the <see cref="P:System.Web.UI.WebControls.MenuItem.PopOutImageUrl" /> property of each menu item to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied contains the corresponding value from the field. The image at the corresponding URL is displayed for each menu item.</para>
718          <block subset="none" type="note">
719            <para>You can override the URL for an individual menu item by setting its <see cref="P:System.Web.UI.WebControls.MenuItem.PopOutImageUrl" /> property directly.</para>
720          </block>
721          <para>If the data source contains multiple tables or attributes, you must first establish the binding criteria by setting the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.Depth" /> property, the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.DataMember" /> property, or both.</para>
722          <para>Instead of using this property to bind the <see cref="P:System.Web.UI.WebControls.MenuItem.PopOutImageUrl" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object to a field, you can also bind it to a static value by setting the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.PopOutImageUrl" /> property. This allows you to navigate to the same URL from each menu item to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied.</para>
723          <block subset="none" type="note">
724            <para>If the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.PopOutImageUrl" /> and <see cref="P:System.Web.UI.WebControls.MenuItemBinding.PopOutImageUrlField" /> properties are both set, the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.PopOutImageUrlField" /> property takes precedence.</para>
725          </block>
726        </remarks>
727        <summary>
728          <attribution license="cc4" from="Microsoft" modified="false" />
729          <para>Gets or sets the name of the field from the data source to bind to the <see cref="P:System.Web.UI.WebControls.MenuItem.PopOutImageUrl" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied.</para>
730        </summary>
731      </Docs>
732      <AssemblyInfo>
733        <AssemblyVersion>2.0.0.0</AssemblyVersion>
734      </AssemblyInfo>
735    </Member>
736    <Member MemberName="Selectable">
737      <MemberSignature Language="C#" Value="public bool Selectable { set; get; }" />
738      <MemberType>Property</MemberType>
739      <Attributes>
740        <Attribute>
741          <AttributeName>System.ComponentModel.DefaultValue(true)</AttributeName>
742        </Attribute>
743      </Attributes>
744      <ReturnValue>
745        <ReturnType>System.Boolean</ReturnType>
746      </ReturnValue>
747      <Docs>
748        <value>To be added.</value>
749        <since version=".NET 2.0" />
750        <remarks>
751          <attribution license="cc4" from="Microsoft" modified="false" />
752          <para>When the <see cref="T:System.Web.UI.WebControls.Menu" /> control is bound to a data source, use the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.Selectable" /> property to set the <see cref="P:System.Web.UI.WebControls.MenuItem.Selectable" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object. This setting is shared with all menu items to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied. When this property is set to false, the menu item is not "clickable" but any child items are displayed.</para>
753        </remarks>
754        <summary>
755          <attribution license="cc4" from="Microsoft" modified="false" />
756          <para>Gets or sets a value that indicates whether the menu item to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied can be selected, or is "clickable."</para>
757        </summary>
758      </Docs>
759      <AssemblyInfo>
760        <AssemblyVersion>2.0.0.0</AssemblyVersion>
761      </AssemblyInfo>
762    </Member>
763    <Member MemberName="SelectableField">
764      <MemberSignature Language="C#" Value="public string SelectableField { set; get; }" />
765      <MemberType>Property</MemberType>
766      <Attributes>
767        <Attribute>
768          <AttributeName>System.ComponentModel.TypeConverter("System.Web.UI.Design.DataSourceViewSchemaConverter, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")</AttributeName>
769        </Attribute>
770        <Attribute>
771          <AttributeName>System.ComponentModel.DefaultValue("")</AttributeName>
772        </Attribute>
773      </Attributes>
774      <ReturnValue>
775        <ReturnType>System.String</ReturnType>
776      </ReturnValue>
777      <Docs>
778        <value>To be added.</value>
779        <since version=".NET 2.0" />
780        <remarks>
781          <attribution license="cc4" from="Microsoft" modified="false" />
782          <para>When the <see cref="T:System.Web.UI.WebControls.Menu" /> control is bound to a data source, use the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.SelectableField" /> property to specify the name of the field to bind to the <see cref="P:System.Web.UI.WebControls.MenuItem.Selectable" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object.</para>
783          <block subset="none" type="note">
784            <para> You can override the enabling of an individual menu item by setting its <see cref="P:System.Web.UI.WebControls.MenuItem.Selectable" /> property directly.</para>
785          </block>
786          <para>If the data source contains multiple tables or attributes, you must first establish the binding criteria by setting the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.Depth" /> property, the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.DataMember" /> property, or both.</para>
787          <block subset="none" type="note">
788            <para>If the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.Selectable" /> and <see cref="P:System.Web.UI.WebControls.MenuItemBinding.SelectableField" /> properties are both set, the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.SelectableField" /> property takes precedence.</para>
789          </block>
790        </remarks>
791        <summary>
792          <attribution license="cc4" from="Microsoft" modified="false" />
793          <para>Gets or sets the name of the field from the data source to bind to the <see cref="P:System.Web.UI.WebControls.MenuItem.Selectable" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied.</para>
794        </summary>
795      </Docs>
796      <AssemblyInfo>
797        <AssemblyVersion>2.0.0.0</AssemblyVersion>
798      </AssemblyInfo>
799    </Member>
800    <Member MemberName="SeparatorImageUrl">
801      <MemberSignature Language="C#" Value="public string SeparatorImageUrl { set; get; }" />
802      <MemberType>Property</MemberType>
803      <Attributes>
804        <Attribute>
805          <AttributeName>System.ComponentModel.Editor("System.Web.UI.Design.UrlEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof(System.Drawing.Design.UITypeEditor))</AttributeName>
806        </Attribute>
807        <Attribute>
808          <AttributeName>System.Web.UI.UrlProperty</AttributeName>
809        </Attribute>
810        <Attribute>
811          <AttributeName>System.ComponentModel.DefaultValue("")</AttributeName>
812        </Attribute>
813      </Attributes>
814      <ReturnValue>
815        <ReturnType>System.String</ReturnType>
816      </ReturnValue>
817      <Docs>
818        <value>To be added.</value>
819        <since version=".NET 2.0" />
820        <remarks>
821          <attribution license="cc4" from="Microsoft" modified="false" />
822          <para>When the <see cref="T:System.Web.UI.WebControls.Menu" /> control is bound to a data source, use the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.SeparatorImageUrl" /> property to specify the URL of a <see cref="P:System.Web.UI.WebControls.MenuItem.SeparatorImageUrl" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object. This URL is shared with all menu items to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied.</para>
823          <block subset="none" type="note">
824            <para>You can override the URL for an individual menu item by setting its <see cref="P:System.Web.UI.WebControls.MenuItem.SeparatorImageUrl" /> property directly.</para>
825          </block>
826          <para>Instead of using this property to indicate the same URL in each menu item, you can also bind the <see cref="P:System.Web.UI.WebControls.MenuItem.SeparatorImageUrl" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object to a field of a data source by setting the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.SeparatorImageUrlField" /> property. When rendered, the <see cref="P:System.Web.UI.WebControls.MenuItem.SeparatorImageUrl" /> property of each menu item to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied contains the corresponding value from the field.</para>
827          <block subset="none" type="note">
828            <para>If the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.SeparatorImageUrl" /> and <see cref="P:System.Web.UI.WebControls.MenuItemBinding.SeparatorImageUrlField" /> properties are both set, the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.SeparatorImageUrlField" /> property takes precedence.</para>
829          </block>
830        </remarks>
831        <summary>
832          <attribution license="cc4" from="Microsoft" modified="false" />
833          <para>Gets or sets the URL to an image displayed below the text of a menu item (to separate it from other menu items) for a menu item to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied.</para>
834        </summary>
835      </Docs>
836      <AssemblyInfo>
837        <AssemblyVersion>2.0.0.0</AssemblyVersion>
838      </AssemblyInfo>
839    </Member>
840    <Member MemberName="SeparatorImageUrlField">
841      <MemberSignature Language="C#" Value="public string SeparatorImageUrlField { set; get; }" />
842      <MemberType>Property</MemberType>
843      <Attributes>
844        <Attribute>
845          <AttributeName>System.ComponentModel.TypeConverter("System.Web.UI.Design.DataSourceViewSchemaConverter, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")</AttributeName>
846        </Attribute>
847        <Attribute>
848          <AttributeName>System.ComponentModel.DefaultValue("")</AttributeName>
849        </Attribute>
850      </Attributes>
851      <ReturnValue>
852        <ReturnType>System.String</ReturnType>
853      </ReturnValue>
854      <Docs>
855        <value>To be added.</value>
856        <since version=".NET 2.0" />
857        <remarks>
858          <attribution license="cc4" from="Microsoft" modified="false" />
859          <para>When the <see cref="T:System.Web.UI.WebControls.Menu" /> control is bound to a data source, use the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.SeparatorImageUrlField" /> property to specify the name of the field to bind to the <see cref="P:System.Web.UI.WebControls.MenuItem.SeparatorImageUrl" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object. When rendered, the <see cref="P:System.Web.UI.WebControls.MenuItem.SeparatorImageUrl" /> property of each menu item to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied contains the corresponding value from the field. The image at the corresponding URL is displayed for each menu item.</para>
860          <block subset="none" type="note">
861            <para>You can override the URL for an individual menu item by setting its <see cref="P:System.Web.UI.WebControls.MenuItem.SeparatorImageUrl" /> property directly.</para>
862          </block>
863          <para>If the data source contains multiple tables or attributes, you must first establish the binding criteria by setting the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.Depth" /> property, the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.DataMember" /> property, or both.</para>
864          <para>Instead of using this property to bind the <see cref="P:System.Web.UI.WebControls.MenuItem.SeparatorImageUrl" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object to a field, you can also bind it to a static value by setting the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.SeparatorImageUrl" /> property. This allows you to navigate to the same URL from each menu item to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied.</para>
865          <block subset="none" type="note">
866            <para>If the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.SeparatorImageUrl" /> and <see cref="P:System.Web.UI.WebControls.MenuItemBinding.SeparatorImageUrlField" /> properties are both set, the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.SeparatorImageUrlField" /> property takes precedence.</para>
867          </block>
868        </remarks>
869        <summary>
870          <attribution license="cc4" from="Microsoft" modified="false" />
871          <para>Gets or sets the name of the field from the data source to bind to the <see cref="P:System.Web.UI.WebControls.MenuItem.SeparatorImageUrl" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied.</para>
872        </summary>
873      </Docs>
874      <AssemblyInfo>
875        <AssemblyVersion>2.0.0.0</AssemblyVersion>
876      </AssemblyInfo>
877    </Member>
878    <Member MemberName="System.ICloneable.Clone">
879      <MemberSignature Language="C#" Value="object ICloneable.Clone ();" />
880      <MemberType>Method</MemberType>
881      <AssemblyInfo>
882        <AssemblyVersion>2.0.0.0</AssemblyVersion>
883      </AssemblyInfo>
884      <ReturnValue>
885        <ReturnType>System.Object</ReturnType>
886      </ReturnValue>
887      <Parameters />
888      <Docs>
889        <remarks>
890          <attribution license="cc4" from="Microsoft" modified="false" />
891          <para>The <see cref="M:System.Web.UI.WebControls.MenuItemBinding.System#ICloneable#Clone" /> method is a helper function that creates a copy of the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object from which this method is called.</para>
892          <block subset="none" type="note">
893            <para>This method is used primarily by control developers.</para>
894          </block>
895        </remarks>
896        <summary>
897          <attribution license="cc4" from="Microsoft" modified="false" />
898          <para>Creates a copy of the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object.</para>
899        </summary>
900        <returns>
901          <attribution license="cc4" from="Microsoft" modified="false" />
902          <para>An <see cref="T:System.Object" /> that represents a copy of the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" />.</para>
903        </returns>
904      </Docs>
905    </Member>
906    <Member MemberName="System.Web.UI.IDataSourceViewSchemaAccessor.DataSourceViewSchema">
907      <MemberSignature Language="C#" Value="object System.Web.UI.IDataSourceViewSchemaAccessor.DataSourceViewSchema { set; get; }" />
908      <MemberType>Property</MemberType>
909      <AssemblyInfo>
910        <AssemblyVersion>2.0.0.0</AssemblyVersion>
911      </AssemblyInfo>
912      <ReturnValue>
913        <ReturnType>System.Object</ReturnType>
914      </ReturnValue>
915      <Docs>
916        <value>To be added.</value>
917        <remarks>
918          <attribution license="cc4" from="Microsoft" modified="false" />
919          <para>This member is an explicit interface member implementation. It can be used only when the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> instance is cast to an <see cref="T:System.Web.UI.IDataSourceViewSchemaAccessor" /> interface.</para>
920        </remarks>
921        <summary>
922          <attribution license="cc4" from="Microsoft" modified="false" />
923          <para>For a description of this member, see <see cref="P:System.Web.UI.IDataSourceViewSchemaAccessor.DataSourceViewSchema" />.</para>
924        </summary>
925      </Docs>
926    </Member>
927    <Member MemberName="System.Web.UI.IStateManager.IsTrackingViewState">
928      <MemberSignature Language="C#" Value="bool System.Web.UI.IStateManager.IsTrackingViewState { get; }" />
929      <MemberType>Property</MemberType>
930      <AssemblyInfo>
931        <AssemblyVersion>2.0.0.0</AssemblyVersion>
932      </AssemblyInfo>
933      <ReturnValue>
934        <ReturnType>System.Boolean</ReturnType>
935      </ReturnValue>
936      <Docs>
937        <value>To be added.</value>
938        <remarks>To be added.</remarks>
939        <summary>
940          <attribution license="cc4" from="Microsoft" modified="false" />
941          <para>Gets a value that indicates whether the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is saving changes to its view state.</para>
942        </summary>
943      </Docs>
944    </Member>
945    <Member MemberName="System.Web.UI.IStateManager.LoadViewState">
946      <MemberSignature Language="C#" Value="void IStateManager.LoadViewState (object savedState);" />
947      <MemberType>Method</MemberType>
948      <AssemblyInfo>
949        <AssemblyVersion>2.0.0.0</AssemblyVersion>
950      </AssemblyInfo>
951      <ReturnValue>
952        <ReturnType>System.Void</ReturnType>
953      </ReturnValue>
954      <Parameters>
955        <Parameter Name="savedState" Type="System.Object" />
956      </Parameters>
957      <Docs>
958        <param name="savedState">To be added.</param>
959        <remarks>To be added.</remarks>
960        <summary>
961          <attribution license="cc4" from="Microsoft" modified="false" />
962          <para>Loads the node's previously saved view state.</para>
963        </summary>
964      </Docs>
965    </Member>
966    <Member MemberName="System.Web.UI.IStateManager.SaveViewState">
967      <MemberSignature Language="C#" Value="object IStateManager.SaveViewState ();" />
968      <MemberType>Method</MemberType>
969      <AssemblyInfo>
970        <AssemblyVersion>2.0.0.0</AssemblyVersion>
971      </AssemblyInfo>
972      <ReturnValue>
973        <ReturnType>System.Object</ReturnType>
974      </ReturnValue>
975      <Parameters />
976      <Docs>
977        <remarks>To be added.</remarks>
978        <summary>
979          <attribution license="cc4" from="Microsoft" modified="false" />
980          <para>Saves the view state changes to an <see cref="T:System.Object" />.</para>
981        </summary>
982        <returns>
983          <attribution license="cc4" from="Microsoft" modified="false" />
984          <para>An <see cref="T:System.Object" /> that contains the view state changes.</para>
985        </returns>
986      </Docs>
987    </Member>
988    <Member MemberName="System.Web.UI.IStateManager.TrackViewState">
989      <MemberSignature Language="C#" Value="void IStateManager.TrackViewState ();" />
990      <MemberType>Method</MemberType>
991      <AssemblyInfo>
992        <AssemblyVersion>2.0.0.0</AssemblyVersion>
993      </AssemblyInfo>
994      <ReturnValue>
995        <ReturnType>System.Void</ReturnType>
996      </ReturnValue>
997      <Parameters />
998      <Docs>
999        <remarks>
1000          <attribution license="cc4" from="Microsoft" modified="false" />
1001          <para>After this method has been called on a server control, the <see cref="P:System.Web.UI.Control.IsTrackingViewState" /> property returns true.</para>
1002        </remarks>
1003        <summary>
1004          <attribution license="cc4" from="Microsoft" modified="false" />
1005          <para>Instructs the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object to track changes to its view state.</para>
1006        </summary>
1007      </Docs>
1008    </Member>
1009    <Member MemberName="Target">
1010      <MemberSignature Language="C#" Value="public string Target { set; get; }" />
1011      <MemberType>Property</MemberType>
1012      <Attributes>
1013        <Attribute>
1014          <AttributeName>System.ComponentModel.DefaultValue("")</AttributeName>
1015        </Attribute>
1016      </Attributes>
1017      <ReturnValue>
1018        <ReturnType>System.String</ReturnType>
1019      </ReturnValue>
1020      <Docs>
1021        <value>To be added.</value>
1022        <since version=".NET 2.0" />
1023        <remarks>
1024          <attribution license="cc4" from="Microsoft" modified="false" />
1025          <para>When the <see cref="T:System.Web.UI.WebControls.Menu" /> control is bound to a data source, use the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.Target" /> property to specify the window or frame in which to display the Web content linked to a menu item when that menu item is clicked.</para>
1026          <block subset="none" type="note">
1027            <para>Setting this property overrides the <see cref="P:System.Web.UI.WebControls.Menu.Target" /> property of the <see cref="T:System.Web.UI.WebControls.Menu" /> control for the menu items to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied. You can selectively override this property by setting the <see cref="P:System.Web.UI.WebControls.MenuItem.Target" /> property of each menu item directly.</para>
1028          </block>
1029          <para>Target values must begin with a letter in the range of A through Z (case-insensitive), except for certain special values that begin with an underscore, as shown in the following table.</para>
1030          <list type="table">
1031            <listheader>
1032              <item>
1033                <term>
1034                  <para>Target value </para>
1035                </term>
1036                <description>
1037                  <para>Description </para>
1038                </description>
1039              </item>
1040            </listheader>
1041            <item>
1042              <term>
1043                <para>_blank </para>
1044              </term>
1045              <description>
1046                <para>Renders the content in a new window without frames. </para>
1047              </description>
1048            </item>
1049            <item>
1050              <term>
1051                <para>_parent </para>
1052              </term>
1053              <description>
1054                <para>Renders the content in the immediate frameset parent. </para>
1055              </description>
1056            </item>
1057            <item>
1058              <term>
1059                <para>_search</para>
1060              </term>
1061              <description>
1062                <para>Renders the content in the search pane.</para>
1063              </description>
1064            </item>
1065            <item>
1066              <term>
1067                <para>_self </para>
1068              </term>
1069              <description>
1070                <para>Renders the content in the frame with focus. </para>
1071              </description>
1072            </item>
1073            <item>
1074              <term>
1075                <para>_top </para>
1076              </term>
1077              <description>
1078                <para>Renders the content in the full window without frames. </para>
1079              </description>
1080            </item>
1081          </list>
1082          <block subset="none" type="note">
1083            <para>Check your browser documentation to determine if the _search value is supported.  For example, Microsoft Internet Explorer 5.0 and later support the _search target value.</para>
1084          </block>
1085          <block subset="none" type="note">
1086            <para> The <see cref="P:System.Web.UI.WebControls.MenuItemBinding.Target" /> property renders as a target attribute. The target attribute on anchor elements is not allowed in the XHTML 1.1 document type definition. Do not set the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.Target" /> property if the rendered output for the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object must be XHTML 1.1 compliant. For more information, refer to the topic <format type="text/html"><a href="1b78d416-66bb-43a5-ac77-c703aab55b97">ASP.NET and XHTML Compliance</a></format>. </para>
1087            <para>When creating accessible Web pages, it is strongly recommended you avoid using the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.Target" /> property to target another window. For more information, see <format type="text/html"><a href="9b5f3e05-e88d-4248-a5f4-9e64850fa0ae">ASP.NET Accessibility</a></format>.</para>
1088          </block>
1089        </remarks>
1090        <summary>
1091          <attribution license="cc4" from="Microsoft" modified="false" />
1092          <para>Gets or sets the target window or frame in which to display the Web page content associated with a menu item to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied.</para>
1093        </summary>
1094      </Docs>
1095      <AssemblyInfo>
1096        <AssemblyVersion>2.0.0.0</AssemblyVersion>
1097      </AssemblyInfo>
1098    </Member>
1099    <Member MemberName="TargetField">
1100      <MemberSignature Language="C#" Value="public string TargetField { set; get; }" />
1101      <MemberType>Property</MemberType>
1102      <Attributes>
1103        <Attribute>
1104          <AttributeName>System.ComponentModel.TypeConverter("System.Web.UI.Design.DataSourceViewSchemaConverter, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")</AttributeName>
1105        </Attribute>
1106        <Attribute>
1107          <AttributeName>System.ComponentModel.DefaultValue("")</AttributeName>
1108        </Attribute>
1109      </Attributes>
1110      <ReturnValue>
1111        <ReturnType>System.String</ReturnType>
1112      </ReturnValue>
1113      <Docs>
1114        <value>To be added.</value>
1115        <since version=".NET 2.0" />
1116        <remarks>
1117          <attribution license="cc4" from="Microsoft" modified="false" />
1118          <para>When the <see cref="T:System.Web.UI.WebControls.Menu" /> control is bound to a data source, use the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.TargetField" /> property to specify the name of the field to bind to the <see cref="P:System.Web.UI.WebControls.MenuItem.Target" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object.</para>
1119          <para>The <see cref="P:System.Web.UI.WebControls.MenuItem.Target" /> property specifies the window or frame in which to display the Web content linked to a menu item when that menu item is clicked. Values must begin with a letter in the range of A through Z (case-insensitive), except for certain special values that begin with an underscore, as shown in the following table. </para>
1120          <list type="table">
1121            <listheader>
1122              <item>
1123                <term>
1124                  <para>Target value </para>
1125                </term>
1126                <description>
1127                  <para>Description </para>
1128                </description>
1129              </item>
1130            </listheader>
1131            <item>
1132              <term>
1133                <para>_blank </para>
1134              </term>
1135              <description>
1136                <para>Renders the content in a new window without frames. </para>
1137              </description>
1138            </item>
1139            <item>
1140              <term>
1141                <para>_parent </para>
1142              </term>
1143              <description>
1144                <para>Renders the content in the immediate frameset parent. </para>
1145              </description>
1146            </item>
1147            <item>
1148              <term>
1149                <para>_self </para>
1150              </term>
1151              <description>
1152                <para>Renders the content in the frame with focus. </para>
1153              </description>
1154            </item>
1155            <item>
1156              <term>
1157                <para>_top </para>
1158              </term>
1159              <description>
1160                <para>Renders the content in the full window without frames. </para>
1161              </description>
1162            </item>
1163          </list>
1164          <block subset="none" type="note">
1165            <para> The <see cref="P:System.Web.UI.WebControls.MenuItemBinding.Target" /> property renders as a target attribute. The target attribute on anchor elements is not allowed in the XHTML 1.1 document type definition. Do not set the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.Target" /> property if the rendered output for the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> must be XHTML 1.1 compliant. For more information, refer to the topic <format type="text/html"><a href="1b78d416-66bb-43a5-ac77-c703aab55b97">ASP.NET and XHTML Compliance</a></format>. </para>
1166            <para>When creating accessible Web pages, it is strongly recommended you avoid using the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.Target" /> property to target another window. For more information, see <format type="text/html"><a href="9b5f3e05-e88d-4248-a5f4-9e64850fa0ae">ASP.NET Accessibility</a></format>.</para>
1167          </block>
1168          <para>Note that setting this property overrides the <see cref="P:System.Web.UI.WebControls.Menu.Target" /> property of the <see cref="T:System.Web.UI.WebControls.Menu" /> control for this menu item. Setting the <see cref="P:System.Web.UI.WebControls.Menu.Target" /> property to open a new window can make it difficult for users of assistive technology devices to use the page.</para>
1169          <block subset="none" type="note">
1170            <para>You can override enabling an individual menu item by setting its <see cref="P:System.Web.UI.WebControls.MenuItem.Target" /> property directly.</para>
1171          </block>
1172          <para>If the data source contains multiple tables or attributes, you must first establish the binding criteria by setting the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.Depth" /> property, the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.DataMember" /> property, or both.</para>
1173          <block subset="none" type="note">
1174            <para>If the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.Target" /> and <see cref="P:System.Web.UI.WebControls.MenuItemBinding.TargetField" /> properties are both set, the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.TargetField" /> property takes precedence.</para>
1175          </block>
1176        </remarks>
1177        <summary>
1178          <attribution license="cc4" from="Microsoft" modified="false" />
1179          <para>Gets or sets the name of the field from the data source to bind to the <see cref="P:System.Web.UI.WebControls.MenuItem.Target" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied.</para>
1180        </summary>
1181      </Docs>
1182      <AssemblyInfo>
1183        <AssemblyVersion>2.0.0.0</AssemblyVersion>
1184      </AssemblyInfo>
1185    </Member>
1186    <Member MemberName="Text">
1187      <MemberSignature Language="C#" Value="public string Text { set; get; }" />
1188      <MemberType>Property</MemberType>
1189      <Attributes>
1190        <Attribute>
1191          <AttributeName>System.ComponentModel.DefaultValue("")</AttributeName>
1192        </Attribute>
1193        <Attribute>
1194          <AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
1195        </Attribute>
1196      </Attributes>
1197      <ReturnValue>
1198        <ReturnType>System.String</ReturnType>
1199      </ReturnValue>
1200      <Docs>
1201        <value>To be added.</value>
1202        <since version=".NET 2.0" />
1203        <remarks>
1204          <attribution license="cc4" from="Microsoft" modified="false" />
1205          <para>When the <see cref="T:System.Web.UI.WebControls.Menu" /> control is bound to a data source, use the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.Text" /> property to specify the text to bind to the <see cref="P:System.Web.UI.WebControls.MenuItem.Text" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object. This text is displayed in a menu item and is shared with all menu items to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied.</para>
1206          <block subset="none" type="note">
1207            <para>You can override the text for an individual menu item by setting its <see cref="P:System.Web.UI.WebControls.MenuItem.Text" /> property directly.</para>
1208          </block>
1209          <para>Instead of using this property to display the same text in each menu item, you can also bind the <see cref="P:System.Web.UI.WebControls.MenuItem.Text" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object to a field of a data source by setting the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.TextField" /> property. When rendered, the <see cref="P:System.Web.UI.WebControls.MenuItem.Text" /> property of each menu item to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied contains the corresponding value from the field.</para>
1210          <block subset="none" type="note">
1211            <para>If the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.Text" /> and <see cref="P:System.Web.UI.WebControls.MenuItemBinding.TextField" /> properties are both set, the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.TextField" /> property takes precedence.</para>
1212          </block>
1213          <para>You cannot create empty nodes in a <see cref="T:System.Web.UI.WebControls.Menu" /> control by setting the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.Text" /> or <see cref="P:System.Web.UI.WebControls.MenuItemBinding.TextField" /> properties to the empty string (""). Setting these properties to the empty string has the same effect as not setting the properties. In that case, the <see cref="T:System.Web.UI.WebControls.Menu" /> control creates a default binding using the <see cref="P:System.Web.UI.WebControls.BaseDataBoundControl.DataSource" /> property. For more information, see <format type="text/html"><a href="f9219396-a0fa-481f-894d-e3d9c67d64f2">Accessing Data with ASP.NET</a></format>.</para>
1214          <para>The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see <see cref="T:System.ComponentModel.LocalizableAttribute" /> and <format type="text/html"><a href="8ef3838e-9d05-4236-9dd0-ceecff9df80d">ASP.NET Globalization and Localization</a></format>.</para>
1215        </remarks>
1216        <summary>
1217          <attribution license="cc4" from="Microsoft" modified="false" />
1218          <para>Gets or sets the text displayed for the menu item to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied.</para>
1219        </summary>
1220      </Docs>
1221      <AssemblyInfo>
1222        <AssemblyVersion>2.0.0.0</AssemblyVersion>
1223      </AssemblyInfo>
1224    </Member>
1225    <Member MemberName="TextField">
1226      <MemberSignature Language="C#" Value="public string TextField { set; get; }" />
1227      <MemberType>Property</MemberType>
1228      <Attributes>
1229        <Attribute>
1230          <AttributeName>System.ComponentModel.TypeConverter("System.Web.UI.Design.DataSourceViewSchemaConverter, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")</AttributeName>
1231        </Attribute>
1232        <Attribute>
1233          <AttributeName>System.ComponentModel.DefaultValue("")</AttributeName>
1234        </Attribute>
1235      </Attributes>
1236      <ReturnValue>
1237        <ReturnType>System.String</ReturnType>
1238      </ReturnValue>
1239      <Docs>
1240        <value>To be added.</value>
1241        <since version=".NET 2.0" />
1242        <remarks>
1243          <attribution license="cc4" from="Microsoft" modified="false" />
1244          <para>When the <see cref="T:System.Web.UI.WebControls.Menu" /> control is bound to a data source, use the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.TextField" /> property to specify the name of the field to bind to the <see cref="P:System.Web.UI.WebControls.MenuItem.Text" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object. When rendered, the <see cref="P:System.Web.UI.WebControls.MenuItem.Text" /> property of each menu item to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied contains the corresponding value from the field. This text is displayed in the menu items.</para>
1245          <block subset="none" type="note">
1246            <para>You can override the text for an individual menu item by setting its <see cref="P:System.Web.UI.WebControls.MenuItem.Text" /> property directly.</para>
1247          </block>
1248          <para>If the data source contains multiple tables or attributes, you must first establish the binding criteria by setting the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.Depth" /> property, the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.DataMember" /> property, or both.</para>
1249          <para>You cannot create empty nodes in a <see cref="T:System.Web.UI.WebControls.Menu" /> control by setting the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.Text" /> or <see cref="P:System.Web.UI.WebControls.MenuItemBinding.TextField" /> properties to the empty string (""). Setting these properties to the empty string has the same effect as not setting the properties. In that case, the <see cref="T:System.Web.UI.WebControls.Menu" /> control creates a default binding using the <see cref="P:System.Web.UI.WebControls.BaseDataBoundControl.DataSource" /> property. For more information, see <format type="text/html"><a href="f9219396-a0fa-481f-894d-e3d9c67d64f2">Accessing Data with ASP.NET</a></format>.</para>
1250          <para>Instead of using this property to bind the <see cref="P:System.Web.UI.WebControls.MenuItem.Text" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object to a field, you can also bind it to a static value by setting the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.Text" /> property. This allows you to display the same text in each menu item to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied.</para>
1251          <block subset="none" type="note">
1252            <para>If the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.Text" /> and <see cref="P:System.Web.UI.WebControls.MenuItemBinding.TextField" /> properties are both set, the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.TextField" /> property takes precedence.</para>
1253          </block>
1254        </remarks>
1255        <summary>
1256          <attribution license="cc4" from="Microsoft" modified="false" />
1257          <para>Gets or sets the name of the field from the data source to bind to the <see cref="P:System.Web.UI.WebControls.MenuItem.Text" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied.</para>
1258        </summary>
1259      </Docs>
1260      <AssemblyInfo>
1261        <AssemblyVersion>2.0.0.0</AssemblyVersion>
1262      </AssemblyInfo>
1263    </Member>
1264    <Member MemberName="ToolTip">
1265      <MemberSignature Language="C#" Value="public string ToolTip { set; get; }" />
1266      <MemberType>Property</MemberType>
1267      <Attributes>
1268        <Attribute>
1269          <AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
1270        </Attribute>
1271        <Attribute>
1272          <AttributeName>System.ComponentModel.DefaultValue("")</AttributeName>
1273        </Attribute>
1274      </Attributes>
1275      <ReturnValue>
1276        <ReturnType>System.String</ReturnType>
1277      </ReturnValue>
1278      <Docs>
1279        <value>To be added.</value>
1280        <since version=".NET 2.0" />
1281        <remarks>
1282          <attribution license="cc4" from="Microsoft" modified="false" />
1283          <para>When the <see cref="T:System.Web.UI.WebControls.Menu" /> control is bound to a data source, use the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.ToolTip" /> property to specify the text to bind to the <see cref="P:System.Web.UI.WebControls.MenuItem.ToolTip" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object. This ToolTip is shared with all menu items to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied. When the user positions the mouse pointer over a menu item, the specified text is displayed.</para>
1284          <block subset="none" type="note">
1285            <para>You can override the ToolTip for an individual menu item by setting its <see cref="P:System.Web.UI.WebControls.MenuItem.ToolTip" /> property directly.</para>
1286          </block>
1287          <para>Instead of using this property to specify the same ToolTip for each menu item, you can also bind the <see cref="P:System.Web.UI.WebControls.MenuItem.ToolTip" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object to a field of a data source by setting the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.ToolTipField" /> property. When rendered, the <see cref="P:System.Web.UI.WebControls.MenuItem.ToolTip" /> property of each menu item to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied contains the corresponding value from the field.</para>
1288          <block subset="none" type="note">
1289            <para>If the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.ToolTip" /> and <see cref="P:System.Web.UI.WebControls.MenuItemBinding.ToolTipField" /> properties are both set, the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.ToolTipField" /> property takes precedence.</para>
1290          </block>
1291          <para>The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see <see cref="T:System.ComponentModel.LocalizableAttribute" /> and <format type="text/html"><a href="8ef3838e-9d05-4236-9dd0-ceecff9df80d">ASP.NET Globalization and Localization</a></format>.</para>
1292        </remarks>
1293        <summary>
1294          <attribution license="cc4" from="Microsoft" modified="false" />
1295          <para>Gets or sets the ToolTip text for a menu item to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied.</para>
1296        </summary>
1297      </Docs>
1298      <AssemblyInfo>
1299        <AssemblyVersion>2.0.0.0</AssemblyVersion>
1300      </AssemblyInfo>
1301    </Member>
1302    <Member MemberName="ToolTipField">
1303      <MemberSignature Language="C#" Value="public string ToolTipField { set; get; }" />
1304      <MemberType>Property</MemberType>
1305      <Attributes>
1306        <Attribute>
1307          <AttributeName>System.ComponentModel.TypeConverter("System.Web.UI.Design.DataSourceViewSchemaConverter, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")</AttributeName>
1308        </Attribute>
1309        <Attribute>
1310          <AttributeName>System.ComponentModel.DefaultValue("")</AttributeName>
1311        </Attribute>
1312      </Attributes>
1313      <ReturnValue>
1314        <ReturnType>System.String</ReturnType>
1315      </ReturnValue>
1316      <Docs>
1317        <value>To be added.</value>
1318        <since version=".NET 2.0" />
1319        <remarks>
1320          <attribution license="cc4" from="Microsoft" modified="false" />
1321          <para>When the <see cref="T:System.Web.UI.WebControls.Menu" /> control is bound to a data source, use the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.ToolTipField" /> property to specify the name of the field to bind to the <see cref="P:System.Web.UI.WebControls.MenuItem.ToolTip" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object. When rendered, the <see cref="P:System.Web.UI.WebControls.MenuItem.ToolTip" /> property of each menu item to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied contains the corresponding value from the field. The specified text is displayed when the user positions the mouse pointer over a menu item.</para>
1322          <block subset="none" type="note">
1323            <para>You can override the text for an individual menu item by setting its <see cref="P:System.Web.UI.WebControls.MenuItem.ToolTip" /> property directly.</para>
1324          </block>
1325          <para>If the data source contains multiple tables or attributes, you must first establish the binding criteria by setting the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.Depth" /> property, the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.DataMember" /> property, or both.</para>
1326          <para>Instead of using this property to bind the <see cref="P:System.Web.UI.WebControls.MenuItem.ToolTip" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object to a field, you can also bind it to a static value by setting the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.ToolTip" /> property. This allows you to display the same ToolTip for each menu item to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied.</para>
1327          <block subset="none" type="note">
1328            <para>If the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.ToolTip" /> and <see cref="P:System.Web.UI.WebControls.MenuItemBinding.ToolTipField" /> properties are both set, the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.ToolTipField" /> property takes precedence.</para>
1329          </block>
1330        </remarks>
1331        <summary>
1332          <attribution license="cc4" from="Microsoft" modified="false" />
1333          <para>Gets or sets the name of the field from the data source to bind to the <see cref="P:System.Web.UI.WebControls.MenuItem.ToolTip" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied.</para>
1334        </summary>
1335      </Docs>
1336      <AssemblyInfo>
1337        <AssemblyVersion>2.0.0.0</AssemblyVersion>
1338      </AssemblyInfo>
1339    </Member>
1340    <Member MemberName="Value">
1341      <MemberSignature Language="C#" Value="public string Value { set; get; }" />
1342      <MemberType>Property</MemberType>
1343      <Attributes>
1344        <Attribute>
1345          <AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
1346        </Attribute>
1347        <Attribute>
1348          <AttributeName>System.ComponentModel.DefaultValue("")</AttributeName>
1349        </Attribute>
1350      </Attributes>
1351      <ReturnValue>
1352        <ReturnType>System.String</ReturnType>
1353      </ReturnValue>
1354      <Docs>
1355        <value>To be added.</value>
1356        <since version=".NET 2.0" />
1357        <remarks>
1358          <attribution license="cc4" from="Microsoft" modified="false" />
1359          <para>When the <see cref="T:System.Web.UI.WebControls.Menu" /> control is bound to a data source, use the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.Value" /> property to specify the value to bind to the <see cref="P:System.Web.UI.WebControls.MenuItem.Value" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object. This value is shared with all menu items to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied. The specified value is not displayed in a menu item and is used to store any additional data about a menu item to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied, such as data used for handling postback events.</para>
1360          <block subset="none" type="note">
1361            <para>You can override the value for an individual menu item by setting its <see cref="P:System.Web.UI.WebControls.MenuItem.Value" /> property directly.</para>
1362          </block>
1363          <para>Instead of using this property to specify the same value for each menu item, you can also bind the <see cref="P:System.Web.UI.WebControls.MenuItem.Value" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object to a field of a data source by setting the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.ValueField" /> property. When rendered, the <see cref="P:System.Web.UI.WebControls.MenuItem.Value" /> property of each menu item to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied contains the corresponding value from the field.</para>
1364          <block subset="none" type="note">
1365            <para>If the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.Value" /> and <see cref="P:System.Web.UI.WebControls.MenuItemBinding.ValueField" /> properties are both set, the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.ValueField" /> property takes precedence.</para>
1366          </block>
1367          <para>The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see <see cref="T:System.ComponentModel.LocalizableAttribute" /> and <format type="text/html"><a href="8ef3838e-9d05-4236-9dd0-ceecff9df80d">ASP.NET Globalization and Localization</a></format>.</para>
1368        </remarks>
1369        <summary>
1370          <attribution license="cc4" from="Microsoft" modified="false" />
1371          <para>Gets or sets a nondisplayed value used to store any additional data about a menu item to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied, such as data used for handling postback events.</para>
1372        </summary>
1373      </Docs>
1374      <AssemblyInfo>
1375        <AssemblyVersion>2.0.0.0</AssemblyVersion>
1376      </AssemblyInfo>
1377    </Member>
1378    <Member MemberName="ValueField">
1379      <MemberSignature Language="C#" Value="public string ValueField { set; get; }" />
1380      <MemberType>Property</MemberType>
1381      <Attributes>
1382        <Attribute>
1383          <AttributeName>System.ComponentModel.TypeConverter("System.Web.UI.Design.DataSourceViewSchemaConverter, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")</AttributeName>
1384        </Attribute>
1385        <Attribute>
1386          <AttributeName>System.ComponentModel.DefaultValue("")</AttributeName>
1387        </Attribute>
1388      </Attributes>
1389      <ReturnValue>
1390        <ReturnType>System.String</ReturnType>
1391      </ReturnValue>
1392      <Docs>
1393        <value>To be added.</value>
1394        <since version=".NET 2.0" />
1395        <remarks>
1396          <attribution license="cc4" from="Microsoft" modified="false" />
1397          <para>When the <see cref="T:System.Web.UI.WebControls.Menu" /> control is bound to a data source, use the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.ValueField" /> property to specify the name of the field to bind to the <see cref="P:System.Web.UI.WebControls.MenuItem.Value" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object. When rendered, the <see cref="P:System.Web.UI.WebControls.MenuItem.Value" /> property of each menu item to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied contains the corresponding value from the field. The specified value is not displayed in a menu item and is used to store any additional data about a menu item to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied, such as data used for handling postback events.</para>
1398          <block subset="none" type="note">
1399            <para>You can override the value for an individual menu item by setting its <see cref="P:System.Web.UI.WebControls.MenuItem.Value" /> property directly.</para>
1400          </block>
1401          <para>If the data source contains multiple tables or attributes, you must first establish the binding criteria by setting the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.Depth" /> property, the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.DataMember" /> property, or both.</para>
1402          <para>Instead of using this property to bind the <see cref="P:System.Web.UI.WebControls.MenuItem.Value" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object to a field, you can also bind it to a static value by setting the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.Value" /> property. This allows you to specify the same value for each menu item to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied.</para>
1403          <block subset="none" type="note">
1404            <para>If the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.Value" /> and <see cref="P:System.Web.UI.WebControls.MenuItemBinding.ValueField" /> properties are both set, the <see cref="P:System.Web.UI.WebControls.MenuItemBinding.ValueField" /> property takes precedence.</para>
1405          </block>
1406        </remarks>
1407        <summary>
1408          <attribution license="cc4" from="Microsoft" modified="false" />
1409          <para>Gets or sets the name of the field from the data source to bind to the <see cref="P:System.Web.UI.WebControls.MenuItem.Value" /> property of a <see cref="T:System.Web.UI.WebControls.MenuItem" /> object to which the <see cref="T:System.Web.UI.WebControls.MenuItemBinding" /> object is applied.</para>
1410        </summary>
1411      </Docs>
1412      <AssemblyInfo>
1413        <AssemblyVersion>2.0.0.0</AssemblyVersion>
1414      </AssemblyInfo>
1415    </Member>
1416  </Members>
1417</Type>