次の方法で共有


ConstraintCollection.IndexOf メソッド

指定した Constraint のインデックスを取得します。

オーバーロードの一覧

指定した Constraint のインデックスを取得します。

.NET Compact Framework でもサポート。

[Visual Basic] Overloads Public Function IndexOf(Constraint) As Integer

[C#] public int IndexOf(Constraint);

[C++] public: int IndexOf(Constraint*);

[JScript] public function IndexOf(Constraint) : int;

名前で指定した Constraint のインデックスを取得します。

.NET Compact Framework でもサポート。

[Visual Basic] Overloads Public Overridable Function IndexOf(String) As Integer

[C#] public virtual int IndexOf(string);

[C++] public: virtual int IndexOf(String*);

[JScript] public function IndexOf(String) : int;

使用例

[Visual Basic, C#, C++] IndexOf メソッドを使用して Constraint のインデックスを返す例を次に示します。コレクションからその制約を削除する前に、 Contains メソッドにインデックスが渡され、コレクションにその制約が含まれているかどうかが確認されます。

[Visual Basic, C#, C++] メモ   ここでは、IndexOf のオーバーロード形式のうちの 1 つだけについて、使用例を示します。その他の例については、各オーバーロード形式のトピックを参照してください。

 
Private Sub RemoveConstraint _
(myConstraints As ConstraintCollection, myConstraint As Constraint)

    Try
        If myConstraints.Contains(myConstraint.ConstraintName) Then
            If myConstraints.CanRemove(myConstraint) Then
                myConstraints.RemoveAt _
                (myConstraints.IndexOf(myConstraint.ConstraintName))
            End If
        End If
    Catch e As Exception
    ' Process exception and return.
         Dim log As System.Diagnostics.EventLog = New System.Diagnostics.EventLog()
         log.Source = "My Application"
         log.WriteEntry(e.ToString())
         Console.WriteLine("Exception of type {0} occurred.", e.GetType().ToString())
    End Try
End Sub

[C#] 
private void RemoveConstraint(ConstraintCollection myConstraints, Constraint myConstraint){
   try{
      if(myConstraints.Contains(myConstraint.ConstraintName)) {
         if(myConstraints.CanRemove(myConstraint)) {
            myConstraints.RemoveAt(myConstraints.IndexOf(myConstraint.ConstraintName));
         }
      }
   }
   catch(Exception e) {
   // Process exception and return.
       System.Diagnostics.EventLog log = new System.Diagnostics.EventLog();
       log.Source = "My Application";
       log.WriteEntry(e.ToString());
       Console.WriteLine("Exception of type {0} occurred.", e.GetType());
   }
}

[C++] 
private:
 void RemoveConstraint(ConstraintCollection* myConstraints, Constraint* myConstraint){
    try{
       if(myConstraints->Contains(myConstraint->ConstraintName)) {
          if(myConstraints->CanRemove(myConstraint)) {
             myConstraints->RemoveAt(myConstraints->IndexOf(myConstraint->ConstraintName));
          }
       }
    }
    catch(Exception* e) {
    // Process exception and return.
        System::Diagnostics::EventLog* log = new System::Diagnostics::EventLog();
        log->Source = S"My Application";
        log->WriteEntry(e->ToString());
        Console::WriteLine(S"Exception of type {0} occurred.", e->GetType());
    }
 }

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

参照

ConstraintCollection クラス | ConstraintCollection メンバ | System.Data 名前空間