Freigeben über


Strokes.Move-Methode

Wendet eine Übersetzung auf die Freihandeingaben der Strokes-Auflistung an.

Namespace:  Microsoft.Ink
Assembly:  Microsoft.Ink (in Microsoft.Ink.dll)

Syntax

'Declaration
Public Sub Move ( _
    offsetX As Single, _
    offsetY As Single _
)
'Usage
Dim instance As Strokes
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
)

Parameter

  • offsetX
    Typ: System.Single
    Der Abstand, um den die Ansichtstransformation in der X-Dimension in HIMETRIC-Einheiten und in Freihandbereichkoordinaten übersetzt werden soll.
  • offsetY
    Typ: System.Single
    Der Abstand, um den die Ansichtstransformation in der Y-Dimension in HIMETRIC-Einheiten und in Freihandbereichkoordinaten übersetzt werden soll.

Beispiele

In diesem Beispiel werden alle Freihandeingaben für ein InkOverlay-Objekt um 1000 HIMETRIC-Einheiten nach rechts verschoben.

' Access to the Strokes property returns a copy of the Strokes object.
' This copy must be implicitly (via using statement) or explicitly
' disposed of in order to avoid a memory leak.
Using allStrokes As Strokes = mInkOverlay.Ink.Strokes
    allStrokes.Move(1000.0F, 0.0F)
End Using
// Access to the Strokes property returns a copy of the Strokes object.
// This copy must be implicitly (via using statement) or explicitly
// disposed of in order to avoid a memory leak.
using (Strokes allStrokes = mInkOverlay.Ink.Strokes)
{
    allStrokes.Move(1000.0f, 0.0f);
}

Plattformen

Windows Vista

.NET Framework und .NET Compact Framework unterstützen nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen für .NET Framework.

Versionsinformationen

.NET Framework

Unterstützt in: 3.0

Siehe auch

Referenz

Strokes-Klasse

Strokes-Member

Microsoft.Ink-Namespace

Strokes.Transform

Stroke.Move