Condividi tramite


Campo PropertyGuidsForContextNodesBase.Ascender

Aggiornamento: novembre 2007

Specifica il GUID per ottenere la matrice di punti che rappresenta le linee ascendenti in una parola dell'input penna.

Spazio dei nomi:  System.Windows.Ink.AnalysisCore
Assembly:  IACore (in IACore.dll)

Sintassi

'Dichiarazione
Public Shared ReadOnly Ascender As Guid
'Utilizzo
Dim value As Guid

value = PropertyGuidsForContextNodesBase.Ascender
public static readonly Guid Ascender
public:
static initonly Guid Ascender
public static final Guid Ascender
public static final var Ascender : Guid

Note

Questo campo rappresenta le linee ascendenti in un oggetto ContextNode di tipo InkWord. Le linee ascendenti corrispondono alla parte di una lettera minuscola che si estende al di sopra del corpo principale di una lettera.

Esempi

Nell'esempio seguente viene illustrato il campo Ascender.

' Get the ascenders on an ink word
If myAnalysisHintNode.ContainsPropertyData( _
   PropertyGuidsForContextNodes.Ascender) Then
    Dim myAscenders() As Integer = _
        CType(myAnalysisHintNode.GetPropertyData( _
        PropertyGuidsForContextNodes.Ascender), Integer())
End If
// Get the ascenders on an ink word
if (myAnalysisHintNode.ContainsPropertyData(
    PropertyGuidsForContextNodes.Ascender))
{
    int[] myAscenders =
        (int[])myAnalysisHintNode.GetPropertyData(
        PropertyGuidsForContextNodes.Ascender);
}

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

Membri PropertyGuidsForContextNodesBase

Spazio dei nomi System.Windows.Ink.AnalysisCore