ConstraintCollection.RemoveAt(Int32) 메서드

정의

컬렉션의 지정한 인덱스에서 Constraint 개체를 제거합니다.

public void RemoveAt (int index);

매개 변수

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());
    }
}

설명

메서드는 IndexOf 특정 Constraint의 인덱스 를 반환합니다.

메서드를 RemoveAt 사용하기 전에 메서드를 사용하여 컬렉션에 Contains 대상 ConstraintCanRemove 포함되어 있는지 여부를 확인하고 메서드를 사용하여 를 제거할 수 있는지 여부를 Constraint 확인할 수 있습니다.

CollectionChanged 제약 조건이 성공적으로 제거되면 이벤트가 발생합니다.

적용 대상

제품 버전
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1

추가 정보