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

ShapeCollection 内の指定した Shape の位置を表す 0 から始まるインデックス値。

解説

図形がコレクション内で見つからない場合、IndexOf メソッドの戻り値は -1 です。

IndexOf メソッドを使用して ShapeCollection 内の Shape の位置を取得する方法を次のコード例に示します。この例では、少なくとも 2 つの 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

その他の技術情報

ライン コントロールとシェイプ コントロールの概要 (Visual Studio)

方法 : LineShape コントロールを使用して線を描画する (Visual Studio)

方法 : OvalShape コントロールおよび RectangleShape コントロールを使用して図形を描画する (Visual Studio)