DesignerRegionCollection.IndexOf(DesignerRegion) 方法

定义

返回指定的 DesignerRegion 对象在集合中的索引。

public:
 int IndexOf(System::Web::UI::Design::DesignerRegion ^ region);
public int IndexOf (System.Web.UI.Design.DesignerRegion region);
member this.IndexOf : System.Web.UI.Design.DesignerRegion -> int
Public Function IndexOf (region As DesignerRegion) As Integer

参数

region
DesignerRegion

要在集合中定位的 DesignerRegion

返回

集合中 region 的第一个匹配项的索引(索引从零开始);否则,如果 region 不在集合中,则为 -1。

注解

方法 IndexOf 通过使用 Equals 对象上的 DesignerRegion 方法确定相等性。

方法 IndexOf 执行线性搜索;因此,平均执行时间与 Count 属性成正比。 由于模板区域集合通常很小,因此线性搜索操作的性能并不重要。

适用于

另请参阅