Compartir a través de


PropertyGuidsForContextNodes.RotatedBoundingBox (Campo)

Actualización: noviembre 2007

Especifica el identificador único global (GUID) para obtener la matriz de puntos que representa el cuadro de límite girado.

Espacio de nombres:  Microsoft.Ink
Ensamblado:  Microsoft.Ink.Analysis (en Microsoft.Ink.Analysis.dll)

Sintaxis

'Declaración
Public Shared ReadOnly RotatedBoundingBox As Guid
'Uso
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

Comentarios

Este campo representa el cuadro de límite girado o un rectángulo girado que delimita la viñeta, palabra, línea o párrafo en un objeto ContextNode de tipo InkBullet, InkWord, Line o Paragraph.

Ejemplos

En el siguiente ejemplo se muestra el campo RotatedBoundingBox.

' 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);
}

Plataformas

Windows Vista

.NET Framework y .NET Compact Framework no admiten todas las versiones de cada plataforma. Para obtener una lista de las versiones compatibles, vea Requisitos de sistema de .NET Framework.

Información de versión

.NET Framework

Compatible con: 3.0

Vea también

Referencia

PropertyGuidsForContextNodes (Clase)

PropertyGuidsForContextNodes (Miembros)

Microsoft.Ink (Espacio de nombres)