122 lines
6.9 KiB
XML
122 lines
6.9 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<Type Name="ViewCollection" FullName="System.Web.UI.WebControls.ViewCollection">
|
||
|
<TypeSignature Language="C#" Value="public class ViewCollection : System.Web.UI.ControlCollection" />
|
||
|
<AssemblyInfo>
|
||
|
<AssemblyName>System.Web</AssemblyName>
|
||
|
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
|
</AssemblyInfo>
|
||
|
<Base>
|
||
|
<BaseTypeName>System.Web.UI.ControlCollection</BaseTypeName>
|
||
|
</Base>
|
||
|
<Interfaces />
|
||
|
<Docs>
|
||
|
<since version=".NET 2.0" />
|
||
|
<remarks>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>The <see cref="T:System.Web.UI.WebControls.ViewCollection" /> class represents a collection container that enables a <see cref="T:System.Web.UI.WebControls.MultiView" /> control to maintain a list of its child controls. A <see cref="T:System.Web.UI.WebControls.MultiView" /> control can contain only <see cref="T:System.Web.UI.WebControls.View" /> controls as child controls.</para>
|
||
|
<para>Use the <see cref="M:System.Web.UI.WebControls.ViewCollection.Add(System.Web.UI.Control)" /> method to add a new <see cref="T:System.Web.UI.WebControls.View" /> control to the <see cref="T:System.Web.UI.WebControls.ViewCollection" /> collection at the end of an ordinal index array. Use the <see cref="M:System.Web.UI.WebControls.ViewCollection.AddAt(System.Int32,System.Web.UI.Control)" /> method to add a new control at a specific index location. Use the <see cref="P:System.Web.UI.WebControls.ViewCollection.Item(System.Int32)" /> indexer to get a <see cref="T:System.Web.UI.WebControls.View" /> control from the <see cref="T:System.Web.UI.WebControls.ViewCollection" /> collection at a specified index, using simple array notation.</para>
|
||
|
</remarks>
|
||
|
<summary>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>Represents a collection container that enables a <see cref="T:System.Web.UI.WebControls.MultiView" /> control to maintain a list of its child controls.</para>
|
||
|
</summary>
|
||
|
</Docs>
|
||
|
<Members>
|
||
|
<Member MemberName=".ctor">
|
||
|
<MemberSignature Language="C#" Value="public ViewCollection (System.Web.UI.Control owner);" />
|
||
|
<MemberType>Constructor</MemberType>
|
||
|
<AssemblyInfo>
|
||
|
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
|
</AssemblyInfo>
|
||
|
<Parameters>
|
||
|
<Parameter Name="owner" Type="System.Web.UI.Control" />
|
||
|
</Parameters>
|
||
|
<Docs>
|
||
|
<remarks>To be added.</remarks>
|
||
|
<summary>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.ViewCollection" /> class.</para>
|
||
|
</summary>
|
||
|
<param name="owner">
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Web.UI.WebControls.MultiView" /> control that owns this collection of child controls. </param>
|
||
|
</Docs>
|
||
|
</Member>
|
||
|
<Member MemberName="Add">
|
||
|
<MemberSignature Language="C#" Value="public override void Add (System.Web.UI.Control v);" />
|
||
|
<MemberType>Method</MemberType>
|
||
|
<ReturnValue>
|
||
|
<ReturnType>System.Void</ReturnType>
|
||
|
</ReturnValue>
|
||
|
<Parameters>
|
||
|
<Parameter Name="v" Type="System.Web.UI.Control" />
|
||
|
</Parameters>
|
||
|
<Docs>
|
||
|
<since version=".NET 2.0" />
|
||
|
<remarks>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>The <see cref="M:System.Web.UI.WebControls.ViewCollection.Add(System.Web.UI.Control)" /> method adds the new control to the end of an ordinal index array. The control can only be an instance of a <see cref="T:System.Web.UI.WebControls.View" /> control.</para>
|
||
|
<para>To add a control to the collection at a specific index location, use the <see cref="M:System.Web.UI.WebControls.ViewCollection.AddAt(System.Int32,System.Web.UI.Control)" /> method.</para>
|
||
|
</remarks>
|
||
|
<summary>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>Adds the specified <see cref="T:System.Web.UI.WebControls.View" /> control to the collection.</para>
|
||
|
</summary>
|
||
|
<param name="v">
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Web.UI.WebControls.View" /> control to add to the collection. </param>
|
||
|
</Docs>
|
||
|
<AssemblyInfo>
|
||
|
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
|
</AssemblyInfo>
|
||
|
</Member>
|
||
|
<Member MemberName="AddAt">
|
||
|
<MemberSignature Language="C#" Value="public override void AddAt (int index, System.Web.UI.Control v);" />
|
||
|
<MemberType>Method</MemberType>
|
||
|
<ReturnValue>
|
||
|
<ReturnType>System.Void</ReturnType>
|
||
|
</ReturnValue>
|
||
|
<Parameters>
|
||
|
<Parameter Name="index" Type="System.Int32" />
|
||
|
<Parameter Name="v" Type="System.Web.UI.Control" />
|
||
|
</Parameters>
|
||
|
<Docs>
|
||
|
<since version=".NET 2.0" />
|
||
|
<remarks>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>The <see cref="M:System.Web.UI.WebControls.ViewCollection.AddAt(System.Int32,System.Web.UI.Control)" /> method adds the new control to the collection at the specified index location. The control can only be an instance of a <see cref="T:System.Web.UI.WebControls.View" /> control.</para>
|
||
|
<para>To add a control at the end of an ordinal index array, use the <see cref="M:System.Web.UI.WebControls.ViewCollection.Add(System.Web.UI.Control)" /> method.</para>
|
||
|
</remarks>
|
||
|
<summary>
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />
|
||
|
<para>Adds the specified <see cref="T:System.Web.UI.WebControls.View" /> control to the collection at the specified index location.</para>
|
||
|
</summary>
|
||
|
<param name="index">
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />The array index at which to add the <see cref="T:System.Web.UI.WebControls.View" /> control. </param>
|
||
|
<param name="v">
|
||
|
<attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Web.UI.WebControls.View" /> control to add to the collection. </param>
|
||
|
</Docs>
|
||
|
<AssemblyInfo>
|
||
|
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
|
</AssemblyInfo>
|
||
|
</Member>
|
||
|
<Member MemberName="Item">
|
||
|
<MemberSignature Language="C#" Value="public System.Web.UI.WebControls.View this[int i] { get; }" />
|
||
|
<MemberType>Property</MemberType>
|
||
|
<ReturnValue>
|
||
|
<ReturnType>System.Web.UI.WebControls.View</ReturnType>
|
||
|
</ReturnValue>
|
||
|
<Parameters>
|
||
|
<Parameter Name="i" Type="System.Int32" />
|
||
|
</Parameters>
|
||
|
<Docs>
|
||
|
<param name="i">To be added.</param>
|
||
|
<summary>To be added.</summary>
|
||
|
<value>To be added.</value>
|
||
|
<remarks>To be added.</remarks>
|
||
|
<since version=".NET 2.0" />
|
||
|
</Docs>
|
||
|
<AssemblyInfo>
|
||
|
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
||
|
</AssemblyInfo>
|
||
|
</Member>
|
||
|
</Members>
|
||
|
</Type>
|