Strokes.Rotate-Methode
Dreht die Strokes-Auflistung um einen Mittelpunkt.
Namespace: Microsoft.Ink
Assembly: Microsoft.Ink (in Microsoft.Ink.dll)
Syntax
'Declaration
Public Sub Rotate ( _
degrees As Single, _
point As Point _
)
'Usage
Dim instance As Strokes
Dim degrees As Single
Dim point As Point
instance.Rotate(degrees, point)
public void Rotate(
float degrees,
Point point
)
public:
void Rotate(
float degrees,
Point point
)
public void Rotate(
float degrees,
Point point
)
public function Rotate(
degrees : float,
point : Point
)
Parameter
- degrees
Typ: System.Single
Der Wert (in Grad), um den eine Drehung im Uhrzeigersinn ausgeführt werden soll.
- point
Typ: System.Drawing.Point
Der Punkt (in Freihandbereichkoordinaten), um den die Drehung erfolgen soll.
Beispiele
In diesem Beispiel wird eine Strokes-Auflistung eines InkOverlay-Objekts um 60 Grad im Uhrzeigersinn gedreht. Die Drehung erfolgt um den Mittelpunkt des umgebenden Felds der Strokes-Auflistung.
' 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
Dim bounds As Rectangle = allStrokes.GetBoundingBox()
' create a point at the center of bounding box
Dim center As Point = New Point(bounds.Left + (bounds.Width / 2), bounds.Top + (bounds.Height / 2))
allStrokes.Rotate(60.0F, center)
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)
{
Rectangle bounds = allStrokes.GetBoundingBox();
// create a point at the center of bounding box
Point center = new Point(bounds.Left+(bounds.Width/2), bounds.Top+(bounds.Height/2));
allStrokes.Rotate(60.0f, center);
}
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