PropertyGuidsForContextNodes.RotatedBoundingBox, champ
Mise à jour : November 2007
Spécifie l'identificateur global unique (GUID) permettant d'obtenir le tableau de points qui représente le cadre englobant pivoté.
Espace de noms : System.Windows.Ink
Assembly : IAWinFX (dans IAWinFX.dll)
Syntaxe
'Déclaration
Public Shared ReadOnly RotatedBoundingBox As Guid
'Utilisation
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
Notes
Le champ RotatedBoundingBox représente le cadre englobant pivoté ou un rectangle pivoté qui délimite la puce, le mot, la ligne ou le paragraphe sur un ContextNode de type InkBullet, InkWord, Line ou Paragraph.
Exemples
L'exemple suivant recherche un RotatedBoundingBox existant dans la méthode ContainsPropertyData d'un AnalysisHintNode. Si le champ RotatedBoundingBox existe, il est converti en un tableau de points pour remplir myRotatedBoundingBox.
' 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);
}
Plateformes
Windows Vista
Le .NET Framework et le .NET Compact Framework ne prennent pas en charge toutes les versions de chaque plateforme. Pour obtenir la liste des versions prises en charge, consultez Configuration requise du .NET Framework.
Informations de version
.NET Framework
Pris en charge dans : 3.0
Voir aussi
Référence
PropertyGuidsForContextNodes, classe