ContextLinkCollection.IndexOf 方法

返回特定 ContextLink 对象在 ContextLinkCollection 中的索引。

命名空间:  System.Windows.Ink
程序集:  IAWinFX(在 IAWinFX.dll 中)

语法

声明
Public Function IndexOf ( _
    link As ContextLink _
) As Integer
用法
Dim instance As ContextLinkCollection
Dim link As ContextLink
Dim returnValue As Integer

returnValue = instance.IndexOf(link)
public int IndexOf(
    ContextLink link
)
public:
int IndexOf(
    ContextLink^ link
)
public int IndexOf(
    ContextLink link
)
public function IndexOf(
    link : ContextLink
) : int

参数

返回值

类型:System.Int32
标识 ContextLinkCollection 中的特定 ContextLink 对象的索引。

备注

如果传入了 ContextLinkCollection 集合中不存在的 ContextLink 对象,则 IndexOf 返回 -1。

示例

此示例演示如何查找 ContextLinkCollection(名为 links)中可能包含的特定 ContextLink(名为 myLink)的索引。

Dim index As Integer = links.IndexOf(myLink)
int index = links.IndexOf(myLink);

平台

Windows Vista

.NET Framework 和 .NET Compact Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求

版本信息

.NET Framework

受以下版本支持:3.0

另请参见

参考

ContextLinkCollection 类

ContextLinkCollection 成员

System.Windows.Ink 命名空间