ShapeCollection.GetChildIndex 方法 (Shape)

检索指定的 Shape 的索引。 ShapeCollection的。

命名空间:  Microsoft.VisualBasic.PowerPacks
程序集:  Microsoft.VisualBasic.PowerPacks.Vs(在 Microsoft.VisualBasic.PowerPacks.Vs.dll 中)

语法

声明
Public Function GetChildIndex ( _
    child As Shape _
) As Integer
public int GetChildIndex(
    Shape child
)
public:
int GetChildIndex(
    Shape^ child
)
member GetChildIndex : 
        child:Shape -> int 
public function GetChildIndex(
    child : Shape
) : int

参数

返回值

类型:System.Int32
表示指定的 Shape 位置。 ShapeCollection的一个从零开始的索引值。

异常

异常 条件
ArgumentException

child 形状不在 ShapeCollection

备注

索引表示形状添加到集合的顺序。 如果形状从集合中移除,重新分配形状的索引。

示例

下面的示例演示如何使用 GetChildIndex 方法检索 Shape 的位置。 ShapeCollection的。 此示例要求窗体的至少有两个 OvalShape 控件。

Private Sub OvalShape2_Click() Handles OvalShape2.Click
    Dim i As Integer
    ' Find the index for OvalShape1.
    i = OvalShape2.Parent.Shapes.GetChildIndex(OvalShape1)
    MsgBox("The index for OvalShape1 is " & CStr(i))
End Sub
        private void ovalShape2_Click(System.Object sender, System.EventArgs e)
        {
            int i;
            String index;
            // Find the index for OvalShape1.
            i = ovalShape2.Parent.Shapes.GetChildIndex(ovalShape1);
            index = i.ToString();
            MessageBox.Show("The index for OvalShape1 is " + index);
        }

.NET Framework 安全性

请参见

参考

ShapeCollection 类

GetChildIndex 重载

Microsoft.VisualBasic.PowerPacks 命名空间

IndexOf

其他资源

Line 和 Shape 控件简介 (Visual Studio)

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

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