Campo PropertyGuidsForContextNodesBase.RotatedBoundingBox
Aggiornamento: novembre 2007
Specifica il GUID per ottenere la matrice di punti che rappresenta il riquadro ruotato.
Spazio dei nomi: System.Windows.Ink.AnalysisCore
Assembly: IACore (in IACore.dll)
Sintassi
'Dichiarazione
Public Shared ReadOnly RotatedBoundingBox As Guid
'Utilizzo
Dim value As Guid
value = PropertyGuidsForContextNodesBase.RotatedBoundingBox
public static readonly Guid RotatedBoundingBox
public:
static initonly Guid RotatedBoundingBox
public static final Guid RotatedBoundingBox
public static final var RotatedBoundingBox : Guid
Note
Questo campo rappresenta il riquadro ruotato o un rettangolo ruotato che delimita il punto elenco, la parola, la riga o il paragrafo in un oggetto ContextNode di tipo InkBullet, InkWord, Line o Paragraph.
Esempi
Nell'esempio seguente viene illustrato il 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);
}
Piattaforme
Windows Vista, Windows XP SP2, Windows Server 2003
.NET Framework e .NET Compact Framework non supportano tutte le versioni di ciascuna piattaforma. Per un elenco delle versioni supportate, vedere Requisiti di sistema di .NET Framework.
Informazioni sulla versione
.NET Framework
Supportato in: 3.0
Vedere anche
Riferimenti
PropertyGuidsForContextNodesBase Classe