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

参数

返回值

类型:System.Int32

一个从零开始的索引值,表示指定的 ShapeShapeCollection 中的位置。

备注

如果未在集合中找到该形状,则 IndexOf 方法返回值 -1。

示例

下面的代码示例演示如何使用 IndexOf 方法检索 ShapeShapeCollection 中的位置。此示例要求窗体上至少有两个 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.");
    }
}

权限

另请参见

参考

ShapeCollection 类

ShapeCollection 成员

Microsoft.VisualBasic.PowerPacks 命名空间

GetChildIndex

其他资源

Line 和 Shape 控件简介 (Visual Studio)

如何:使用 LineShape 控件绘制直线 (Visual Studio)

如何:使用 OvalShape 和 RectangleShape 控件绘制形状 (Visual Studio)