ModelComponentCollection.IndexOf 方法

定义

重载

IndexOf(IModelComponent)

搜索指定项并返回集合中其从零开始的索引。

IndexOf(String)

返回 ModelComponentCollection 中具有指定键的 IModelComponent 的第一个匹配项的索引(索引从零开始)。

IndexOf(IModelComponent)

搜索指定项并返回集合中其从零开始的索引。

protected int IndexOf (Microsoft.AnalysisServices.IModelComponent item);
member this.IndexOf : Microsoft.AnalysisServices.IModelComponent -> int
Protected Function IndexOf (item As IModelComponent) As Integer

参数

item
IModelComponent

要定位的项。

返回

如果找到,则为集合中项的从零开始的索引;如果未找到,则为 -1。

适用于

IndexOf(String)

返回 ModelComponentCollection 中具有指定键的 IModelComponent 的第一个匹配项的索引(索引从零开始)。

protected int IndexOf (string key);
member this.IndexOf : string -> int
Protected Function IndexOf (key As String) As Integer

参数

key
String

要查找的 IModelComponent 的键。

返回

如果找到,则为 ModelComponentCollection 内键的第一个匹配项从零开始的索引;如果未找到,则为 -1。

适用于