다음을 통해 공유


Stroke.SetPoint 메서드

업데이트: 2007년 11월

Stroke 개체의 지정된 인덱스에 있는 Point 구조체를 설정합니다.

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

구문

‘선언
Public Function SetPoint ( _
    index As Integer, _
    point As Point _
) As Integer
‘사용 방법
Dim instance As Stroke
Dim index As Integer
Dim point As Point
Dim returnValue As Integer

returnValue = instance.SetPoint(index, _
    point)
public int SetPoint(
    int index,
    Point point
)
public:
int SetPoint(
    int index, 
    Point point
)
public int SetPoint(
    int index,
    Point point
)
public function SetPoint(
    index : int, 
    point : Point
) : int

매개 변수

  • index
    형식: System.Int32
    수정할 Point 구조체의 0부터 시작하는 인덱스입니다.

반환 값

형식: System.Int32
변경된 점 수를 반환합니다. 일반적으로 이 메서드는 1을 반환합니다.

예제

이 C# 예제에서는 Stroke 개체인 theStroke의 첫 번째 점을 원점으로 설정합니다.

theStroke.SetPoint(0, new Point(0,0));

이 Microsoft Visual Basic .NET 예제에서는 Stroke 개체인 theStroke의 첫 번째 점을 원점으로 설정합니다.

theStroke.SetPoint(0, New Point(0,0))

플랫폼

Windows Vista

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

버전 정보

.NET Framework

3.0에서 지원

참고 항목

참조

Stroke 클래스

Stroke 멤버

Microsoft.Ink 네임스페이스

Stroke.SetPoints