ConstraintCollection.RemoveAt(Int32) メソッド

定義

指定したインデックス位置にある Constraint オブジェクトをコレクションから削除します。

public:
 void RemoveAt(int index);
public void RemoveAt (int index);
member this.RemoveAt : int -> unit
Public Sub RemoveAt (index As Integer)

パラメーター

index
Int32

削除する Constraint のインデックス。

例外

このコレクションにはこのインデックス位置に制約がありません。

次の例では、 IndexOf メソッドと メソッドを RemoveAt 使用して から制約を削除します ConstraintCollection

private void RemoveConstraint(ConstraintCollection constraints,
    Constraint constraint)
{
    try
    {
        if(constraints.Contains(constraint.ConstraintName))
        {
            if(constraints.CanRemove(constraint))
            {
                constraints.RemoveAt(constraints.IndexOf(
                    constraint.ConstraintName));
            }
        }
    }
    catch(Exception e)
    {
        // Process exception and return.
        Console.WriteLine("Exception of type {0} occurred.",
            e.GetType());
    }
}
Private Sub RemoveConstraint _
    (constraints As ConstraintCollection, constraint As Constraint)

    Try
        If constraints.Contains(constraint.ConstraintName) Then
            If constraints.CanRemove(constraint) Then
                constraints.RemoveAt _
                    (constraints.IndexOf(constraint.ConstraintName))
            End If
        End If

    Catch e As Exception
        ' Process exception and return.
        Console.WriteLine("Exception of type {0} occurred.", _
            e.GetType().ToString())
    End Try
End Sub

注釈

メソッドは IndexOf 、特定 Constraintの のインデックスを返します。

メソッドを使用する RemoveAt 前に、 メソッドを Contains 使用して、コレクションにターゲット Constraintが含まれているかどうかを判断し、 メソッドを CanRemove 使用して を Constraint 削除できるかどうかを判断できます。

このイベントは CollectionChanged 、制約が正常に削除された場合に発生します。

適用対象

こちらもご覧ください