Stroke.Move - метод
Обновлен: Ноябрь 2007
Applies a translation to the ink of the Stroke object.
Пространство имен: Microsoft.Ink
Сборка: Microsoft.Ink (в Microsoft.Ink.dll)
Синтаксис
'Декларация
Public Sub Move ( _
offsetX As Single, _
offsetY As Single _
)
'Применение
Dim instance As Stroke
Dim offsetX As Single
Dim offsetY As Single
instance.Move(offsetX, offsetY)
public void Move(
float offsetX,
float offsetY
)
public:
void Move(
float offsetX,
float offsetY
)
public void Move(
float offsetX,
float offsetY
)
public function Move(
offsetX : float,
offsetY : float
)
Параметры
- offsetX
Тип: System.Single
The distance to translate the view transform in the X dimension, in HIMETRIC units, in ink space coordinates.
- offsetY
Тип: System.Single
The distance to translate the view transform in the Y dimension, in HIMETRIC units, in ink space coordinates.
Примеры
In this example, the points of each selected Stroke object of an InkOverlay are used to create a new Stroke object. The new Stroke object is then moved by 200 HIMETRIC units in both the X and Y direction.
For Each S As Stroke In mInkOverlay.Selection
Dim sPts() As Point = S.GetPoints()
Dim newStroke As Stroke = S.Ink.CreateStroke(sPts)
newStroke.Move(200, 200)
Next
foreach (Stroke S in mInkOverlay.Selection)
{
Point[] sPts = S.GetPoints();
Stroke newStroke = S.Ink.CreateStroke(sPts);
newStroke.Move(200, 200);
}
Платформы
Windows Vista
Среды .NET Framework и .NET Compact Framework поддерживают не все версии каждой платформы. Поддерживаемые версии перечислены в разделе Требования к системе для .NET Framework.
Сведения о версии
.NET Framework
Поддерживается в версии: 3.0