次の方法で共有


ShapeCollection.IndexOfKey メソッド

コレクション内の指定されたアイテムの最初の文字のインデックスを取得します。

名前空間:  Microsoft.VisualBasic.PowerPacks
アセンブリ:  Microsoft.VisualBasic.PowerPacks.Vs (Microsoft.VisualBasic.PowerPacks.Vs.dll 内)

構文

'宣言
Public Function IndexOfKey ( _
    key As String _
) As Integer
public int IndexOfKey(
    string key
)
public:
int IndexOfKey(
    String^ key
)
member IndexOfKey : 
        key:string -> int 
public function IndexOfKey(
    key : String
) : int

パラメーター

戻り値

型 : System.Int32
コレクションで指定した名前を持つ図形の最初の文字のインデックス。

解説

キーの比較では、大文字と小文字が区別されません。key のパラメーターが null 参照 IndexOfKey は -1 を返します (Visual Basic の Nothing) または空の文字列であるか、または指定したキーを持つ項目が存在しない場合は。

ShapeName のプロパティは ShapeCollectionShape のキーと同じです。

次のコード例に ShapeCollectionShape の位置を取得するに IndexOfKey のメソッドの使用方法を示しています。この例では、フォームの少なくとも OvalShape の 2 種類のコントロールがあることが必要です。

Private Sub OvalShape1_Click() Handles OvalShape1.Click
    Dim i As Integer
    ' Find the index for OvalShape1.
    i = OvalShape1.Parent.Shapes.IndexOfKey("OvalShape2")
    ' If the shape is not in the collection, display a message.
    If i = -1 Then
        MsgBox("OvalShape2 is not in this collection.")
    End If
End Sub
private void ovalShape1_Click(System.Object sender, System.EventArgs e)
{
    int i;
    // Find the index for OvalShape1.
    i = ovalShape1.Parent.Shapes.IndexOfKey("ovalShape2");
    // If the shape is not in the collection, display a message.
    if (i == -1)
    {
        MessageBox.Show("ovalShape2 is not in this collection.");
    }
}

.NET Framework セキュリティ

  • 直前の呼び出し元に対する完全な信頼。このメンバーは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。

参照

関連項目

ShapeCollection クラス

Microsoft.VisualBasic.PowerPacks 名前空間

IndexOf

GetChildIndex

その他の技術情報

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

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

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