ShapeCollection.IndexOf 方法
更新:2007 年 11 月
检索 ShapeCollection 中指定 Shape 的索引。
命名空间: Microsoft.VisualBasic.PowerPacks
程序集: Microsoft.VisualBasic.PowerPacks.Vs(在 Microsoft.VisualBasic.PowerPacks.Vs.dll 中)
语法
声明
Public Function IndexOf ( _
value As Shape _
) As Integer
用法
Dim instance As ShapeCollection
Dim value As Shape
Dim returnValue As Integer
returnValue = instance.IndexOf(value)
public int IndexOf(
Shape value
)
public:
int IndexOf(
Shape^ value
)
public function IndexOf(
value : Shape
) : int
参数
value
类型:Microsoft.VisualBasic.PowerPacks.Shape要在集合中定位的 Shape。
返回值
类型:System.Int32
一个从零开始的索引值,表示指定的 Shape 在 ShapeCollection 中的位置。
备注
如果未在集合中找到该形状,则 IndexOf 方法返回值 -1。
示例
下面的代码示例演示如何使用 IndexOf 方法检索 Shape 在 ShapeCollection 中的位置。此示例要求窗体上至少有两个 OvalShape 控件。
Private Sub OvalShape2_Click(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles OvalShape2.Click
Dim i As Integer
' Find the index for OvalShape1.
i = OvalShape2.Parent.Shapes.IndexOf(OvalShape1)
' If the shape is not in the collection, display a message.
If i = -1 Then
MsgBox("OvalShape1 is not in this collection.")
End If
End Sub
private void ovalShape2_Click(System.Object sender, System.EventArgs e)
{
int i;
// Find the index for OvalShape1.
i = ovalShape2.Parent.Shapes.IndexOf(ovalShape1);
// If the shape is not in the collection, display a message.
if (i == -1)
{
MessageBox.Show("ovalShape1 is not in this collection.");
}
}
权限
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。
另请参见
参考
Microsoft.VisualBasic.PowerPacks 命名空间
其他资源
Line 和 Shape 控件简介 (Visual Studio)