PropertyGuidsForContextNodes.RotatedBoundingBox-Feld
Gibt die GUID (Globally Unique Identifier) zum Abrufen des Punktarrays an, das das gedrehte umgebende Rechteck darstellt.
Namespace: System.Windows.Ink
Assembly: IAWinFX (in IAWinFX.dll)
Syntax
'Declaration
Public Shared ReadOnly RotatedBoundingBox As Guid
'Usage
Dim value As Guid
value = PropertyGuidsForContextNodes.RotatedBoundingBox
public static readonly Guid RotatedBoundingBox
public:
static initonly Guid RotatedBoundingBox
public static final Guid RotatedBoundingBox
public static final var RotatedBoundingBox : Guid
Hinweise
Das RotatedBoundingBox-Feld stellt das gedrehte umgebende Rechteck oder ein gedrehtes Rechteck, das das Aufzählungszeichen, das Wort, die Zeile oder den Absatz umgibt, für einen ContextNode folgender Typen dar: InkBullet, InkWord, Line oder Paragraph.
Beispiele
Im folgenden Beispiel wird überprüft, ob in der ContainsPropertyData-Methode eines AnalysisHintNode ein RotatedBoundingBox existiert. Wenn das RotatedBoundingBox-Feld vorhanden ist, wird es in ein Punktarray konvertiert, um myRotatedBoundingBox aufzufüllen.
' Get the rotated rectangle that bounds the bullet, word, line, or paragraph
If myAnalysisHintNode.ContainsPropertyData( _
PropertyGuidsForContextNodes.RotatedBoundingBox) Then
Dim myRotatedBoundingBox As Integer() = _
CType(myAnalysisHintNode.GetPropertyData( _
PropertyGuidsForContextNodes.RotatedBoundingBox), Integer())
End If
// Get the rotated rectangle that bounds the bullet, word, line, or paragraph
if (myAnalysisHintNode.ContainsPropertyData(
PropertyGuidsForContextNodes.RotatedBoundingBox))
{
int[] myRotatedBoundingBox =
(int[])myAnalysisHintNode.GetPropertyData(
PropertyGuidsForContextNodes.RotatedBoundingBox);
}
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
PropertyGuidsForContextNodes-Klasse