Freigeben über


ParagraphNode.GetRotatedBoundingBox-Methode

Gibt ein gedrehtes Rechteck zurück, das den ParagraphNode bindet.

Namespace:  System.Windows.Ink
Assembly:  IAWinFX (in IAWinFX.dll)

Syntax

'Declaration
Public Function GetRotatedBoundingBox As PointCollection
'Usage
Dim instance As ParagraphNode
Dim returnValue As PointCollection

returnValue = instance.GetRotatedBoundingBox()
public PointCollection GetRotatedBoundingBox()
public:
PointCollection^ GetRotatedBoundingBox()
public PointCollection GetRotatedBoundingBox()
public function GetRotatedBoundingBox() : PointCollection

Rückgabewert

Typ: System.Windows.Media.PointCollection
Das gedrehte Rechteck, das den ParagraphNode bindet.

Beispiele

Im folgenden Beispiel wird ein Polygon verwendet, um ein gedrehtes umgebenes Rechteck für einen ParagraphNode, paragraph, auf einem InkCanvas, theInkCanvas, zu zeichnen.

' Convert corners to pixel coordinates
Dim paragraphBounds As New Polygon()

paragraphBounds.Points = paragraph.GetRotatedBoundingBox()
paragraphBounds.Stroke = Brushes.Blue

theInkCanvas.Children.Add(paragraphBounds)
// Convert corners to pixel coordinates
Polygon paragraphBounds = new Polygon();

paragraphBounds.Points = paragraph.GetRotatedBoundingBox();
paragraphBounds.Stroke = Brushes.Blue;

theInkCanvas.Children.Add(paragraphBounds);

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

ParagraphNode-Klasse

ParagraphNode-Member

System.Windows.Ink-Namespace