CustomStrokes.Add 메서드
업데이트: 2007년 11월
Strokes 컬렉션을 CustomStrokes 컬렉션에 추가합니다.
네임스페이스: Microsoft.Ink
어셈블리: Microsoft.Ink(Microsoft.Ink.dll)
구문
‘선언
Public Sub Add ( _
name As String, _
strokes As Strokes _
)
‘사용 방법
Dim instance As CustomStrokes
Dim name As String
Dim strokes As Strokes
instance.Add(name, strokes)
public void Add(
string name,
Strokes strokes
)
public:
void Add(
String^ name,
Strokes^ strokes
)
public void Add(
String name,
Strokes strokes
)
public function Add(
name : String,
strokes : Strokes
)
매개 변수
- name
형식: System.String
CustomStrokes 컬렉션에 추가할 Strokes 컬렉션의 이름입니다.
- strokes
형식: Microsoft.Ink.Strokes
CustomStrokes 컬렉션에 추가할 Strokes 컬렉션입니다.
설명
참고
name 매개 변수를 CustomStrokes 컬렉션에 이미 있는 이름으로 설정하여 이 메서드를 호출하면 예외가 throw됩니다.
예제
이 예제에서는 전달된 Ink 개체의 Strokes 컬렉션을 지정된 이름을 사용하여 전달된 동일한 Ink 개체의 CustomStrokes 컬렉션에 추가합니다. 이름이 지정된 CustomStrokes 컬렉션이 이미 있는 경우에는 예외가 발생합니다.
Private Sub AddCustomStrokes(ByVal mName As String, ByVal mInk As Ink)
Try
' if the name already exists, an exception will be raised
mInk.CustomStrokes.Add(mName, mInk.Strokes)
Catch E As ArgumentException
' this exception is raised when the named collection already exists
End Try
End Sub
private void AddCustomStrokes(string mName, Ink mInk)
{
try
{
// if the name already exists, an exception will be raised
mInk.CustomStrokes.Add(mName, mInk.Strokes);
}
catch (ArgumentException)
{
// this exception is raised when the named collection already exists
}
}
플랫폼
Windows Vista
.NET Framework 및 .NET Compact Framework에서 모든 플랫폼의 전체 버전을 지원하지는 않습니다. 지원되는 버전의 목록을 보려면 .NET Framework 시스템 요구 사항을 참조하십시오.
버전 정보
.NET Framework
3.0에서 지원