다음을 통해 공유


CustomStrokes.RemoveAt 메서드

업데이트: 2007년 11월

CustomStrokes 컬렉션의 지정된 인덱스에 있는 Strokes 컬렉션을 제거합니다.

네임스페이스:  Microsoft.Ink
어셈블리:  Microsoft.Ink(Microsoft.Ink.dll)

구문

‘선언
Public Sub RemoveAt ( _
    i As Integer _
)
‘사용 방법
Dim instance As CustomStrokes
Dim i As Integer

instance.RemoveAt(i)
public void RemoveAt(
    int i
)
public:
void RemoveAt(
    int i
)
public void RemoveAt(
    int i
)
public function RemoveAt(
    i : int
)

매개 변수

설명

CustomStrokes 컬렉션은 잉크 데이터에 대한 참조이며 실제 데이터는 아닙니다. 이 메서드는 잉크 데이터의 스냅숏이나 잉크 데이터를 가리키는 참조에서만 관련된 컬렉션을 제거하며 실제 잉크 데이터는 제거하지 않습니다. 실제 잉크 데이터에서 컬렉션을 삭제하려면 Ink.DeleteStrokes 메서드를 호출합니다.

index가 CustomStrokes 컬렉션의 기존 멤버와 일치하지 않으면 System.ArgumentOutOfRangeException이 발생합니다. 개발을 목적으로 Tablet PC SDK가 설치된 Windows XP(Tablet Edition이 아님)를 사용하는 중이며 index가 CustomStrokes 컬렉션의 기존 멤버와 일치하지 않는 경우 System.Runtime.InteropServices가 발생합니다.

예제

이 예제에서는 CustomStrokes 컬렉션의 지정된 인덱스에 있는 Strokes 컬렉션이 제거됩니다. 지정된 인덱스에 Strokes 컬렉션이 없는 경우 예외가 발생합니다.

Private Sub RemoveCustomStrokes(ByVal mIndex As Integer, ByVal mInk As Ink)
    Try
        ' if the indexed position does not exist, an exception will be raised
        mInk.CustomStrokes.RemoveAt(mIndex)

    Catch E As System.Runtime.InteropServices.COMException
        ' For Windows XP (not Tablet Edition) with Tablet PC SDK installed for development purposes
        ' this exception is raised when the indexed collection does not exist

    Catch E As ArgumentOutOfRangeException
        ' For Windows XP Tablet Edition and Vista
        ' this exception is raised when the indexed collection does not exist
    End Try
End Sub
private void RemoveCustomStrokes(int mIndex, Ink mInk)
{
    try
    {
        // if the indexed position does not exist, an exception will be raised
        mInk.CustomStrokes.RemoveAt(mIndex);
    }
    catch (System.Runtime.InteropServices.COMException)
    {
        // For Windows XP (not Tablet Edition) with Tablet PC SDK installed for development purposes
        // this exception is raised when the indexed collection does not exist
    }
    catch (ArgumentOutOfRangeException)
    {
        // For Windows XP Tablet Edition and Vista
        // this exception is raised when the indexed collection does not exist
    }

}

플랫폼

Windows Vista

.NET Framework 및 .NET Compact Framework에서 모든 플랫폼의 전체 버전을 지원하지는 않습니다. 지원되는 버전의 목록을 보려면 .NET Framework 시스템 요구 사항을 참조하십시오.

버전 정보

.NET Framework

3.0에서 지원

참고 항목

참조

CustomStrokes 클래스

CustomStrokes 멤버

Microsoft.Ink 네임스페이스