업데이트: 2007년 11월
Strokes 컬렉션에 Strokes 컬렉션을 추가합니다.
네임스페이스: Microsoft.Ink
어셈블리: Microsoft.Ink(Microsoft.Ink.dll)
구문
‘선언
Public Sub Add ( _
strokes As Strokes _
)
‘사용 방법
Dim instance As Strokes
Dim strokes As Strokes
instance.Add(strokes)
public void Add(
Strokes strokes
)
public:
void Add(
Strokes^ strokes
)
public void Add(
Strokes strokes
)
public function Add(
strokes : Strokes
)
매개 변수
- strokes
형식: Microsoft.Ink.Strokes
Strokes 컬렉션에 추가할 Strokes 컬렉션입니다.
설명
Stroke 개체는 이미 Ink 개체 내에 있어야 하며 다른 Ink 개체에 속할 수 없습니다. 또한 이 메서드는 Ink 개체를 복사하거나 어떠한 방식으로도 변경하지 않으며 해당 Stroke를 Strokes 컬렉션에 단순히 추가하기만 합니다.
예제
이 예제에서는 새로 만든 Strokes 컬렉션에 Stroke 개체를 추가합니다. 그런 다음 이 컬렉션을 다른 Strokes 컬렉션에 추가합니다. 예제 메서드에 전달된 Ink 개체는 새 Strokes 컬렉션 및 새 Stroke 개체를 만드는 데 사용됩니다. CreateStroke 메서드를 호출하여 새 Stroke 개체를 만들면 새로 만든 Stroke가 Ink 개체의 기본 Strokes() 컬렉션에 자동으로 추가됩니다. 또한 이 예제와 같이 새로 만든 Stroke 개체를 다른 Strokes 컬렉션에 추가할 수 있습니다.
Private Sub AddStrokes(ByVal mInk As Ink)
' create a new Strokes collection
Dim newStrokes1 As Strokes = mInk.CreateStrokes()
' create a new Stroke
Dim points As Point() = {New Point(500, 500), New Point(500, 2500)}
Dim newStroke As Stroke = mInk.CreateStroke(points)
' add the new Stroke to the Strokes collection
newStrokes1.Add(newStroke)
' create another Strokes collection
Dim newStrokes2 As Strokes = mInk.CreateStrokes()
' add the first Strokes collection to the second Strokes collection
newStrokes2.Add(newStrokes1)
End Sub
private void AddStrokes(Ink mInk)
{
// create a new Strokes collection
Strokes newStrokes1 = mInk.CreateStrokes();
// create a new Stroke
Point[] points = { new Point(500, 500), new Point(500, 2500) };
Stroke newStroke = mInk.CreateStroke(points);
// add the new Stroke to the Strokes collection
newStrokes1.Add(newStroke);
// create another Strokes collection
Strokes newStrokes2 = mInk.CreateStrokes();
// add the first Strokes collection to the second Strokes collection
newStrokes2.Add(newStrokes1);
}
플랫폼
Windows Vista
.NET Framework 및 .NET Compact Framework에서 모든 플랫폼의 전체 버전을 지원하지는 않습니다. 지원되는 버전의 목록을 보려면 .NET Framework 시스템 요구 사항을 참조하십시오.
버전 정보
.NET Framework
3.0에서 지원