Поделиться через


Stroke.SetPoint - метод

Обновлен: Ноябрь 2007

Sets the Point structure at the specified index in a Stroke object.

Пространство имен:  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

Параметры

Возвращаемое значение

Тип: System.Int32
Returns the number of points changed. Generally, this method returns 1.

Примеры

This C# example sets the first point of the Stroke object, theStroke, to the origin.

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

This Microsoft Visual Basic .NET example sets the first point of the Stroke object, theStroke, to the origin.

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