WebPartZoneCollection.IndexOf(WebPartZoneBase) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回集合中特定成员的位置。
public:
int IndexOf(System::Web::UI::WebControls::WebParts::WebPartZoneBase ^ value);
public int IndexOf (System.Web.UI.WebControls.WebParts.WebPartZoneBase value);
member this.IndexOf : System.Web.UI.WebControls.WebParts.WebPartZoneBase -> int
Public Function IndexOf (value As WebPartZoneBase) As Integer
参数
- value
- WebPartZoneBase
作为集合成员的 WebPartZoneBase。
返回
一个整数,指示集合中特定对象的位置。
示例
下面的代码示例演示如何使用 IndexOf 方法。 示例的完整代码(包括用户控件、包含区域的页面以及包含代码的分部类文件)位于类概述的 WebPartZoneCollection “示例”部分。
以下代码部分演示了 方法的 IndexOf 用法。 若要执行代码,请在浏览器中加载页面,然后单击“ WebPartZone1 索引 ”按钮。
protected void Button4_Click(object sender, EventArgs e)
{
Label1.Text = String.Empty;
Label1.Text = "WebPartZone1 index: " + mgr.Zones.IndexOf(WebPartZone1);
}
Protected Sub Button4_Click(ByVal sender As Object, ByVal e As EventArgs)
Label1.Text = String.Empty
Label1.Text = "WebPartZone1 index: " & mgr.Zones.IndexOf(WebPartZone1)
End Sub
注解
IndexOf如果 Web 部件页上有多个WebPartZone区域,并且需要知道一个区域相对于其他区域的序号位置,则此方法非常有用。