다음을 통해 공유


CustomStrokes.Remove 메서드

업데이트: 2007년 11월

CustomStrokes 컬렉션에서 Strokes 컬렉션을 제거합니다.

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

구문

‘선언
Public Sub Remove ( _
    s As String _
)
‘사용 방법
Dim instance As CustomStrokes
Dim s As String

instance.Remove(s)
public void Remove(
    string s
)
public:
void Remove(
    String^ s
)
public void Remove(
    String s
)
public function Remove(
    s : String
)

매개 변수

설명

이 메서드를 호출하면 s 매개 변수를 사용하여 추가한 것과 동일한 Strokes 컬렉션이 제거됩니다.

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

name이 CustomStrokes 컬렉션의 기존 멤버와 일치하지 않으면 System.ArgumentException이 발생합니다.

예제

이 예제에서는 CustomStrokes 컬렉션 내에서 지정된 이름을 가진 Strokes 컬렉션이 제거됩니다. 지정된 이름을 가진 Strokes 컬렉션이 없는 경우 예외가 발생합니다.

Private Sub RemoveCustomStrokes(ByVal mName As String, ByVal mInk As Ink)
    Try
        ' if the name does not exist, an exception will be raised
        mInk.CustomStrokes.Remove(mName)
    Catch E As ArgumentException
        ' this exception is raised when the named collection does not exist
    End Try

End Sub
private void RemoveCustomStrokes(string mName, Ink mInk)
{
    try
    {
        // if the name does not exist, an exception will be raised
        mInk.CustomStrokes.Remove(mName);
    }
    catch (ArgumentException)
    {
        // this exception is raised when the named collection does not exist
    }

}

플랫폼

Windows Vista

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

버전 정보

.NET Framework

3.0에서 지원

참고 항목

참조

CustomStrokes 클래스

CustomStrokes 멤버

Microsoft.Ink 네임스페이스

Ink.DeleteStrokes

Ink