Freigeben über


PropertyGuidsForContextNodes.Midline-Feld

Gibt die GUID (Globally Unique Identifier) zum Abrufen des Punktarrays an, das die Mittellinie in einem Freihandwort darstellt.

Namespace:  Microsoft.Ink
Assembly:  Microsoft.Ink.Analysis (in Microsoft.Ink.Analysis.dll)

Syntax

'Declaration
Public Shared ReadOnly Midline As Guid
'Usage
Dim value As Guid

value = PropertyGuidsForContextNodes.Midline
public static readonly Guid Midline
public:
static initonly Guid Midline
public static final Guid Midline
public static final var Midline : Guid

Hinweise

Dieses Feld stellt die Mittellinie für einen ContextNode vom Typ InkWord dar. Mittellinien sind die imaginären horizontalen Linien, an denen die Oberkante des Texts der einzelnen Zeichen, ausgenommen Extender, ausgerichtet wird.

Beispiele

Im folgenden Beispiel wird das Midline-Feld veranschaulicht.

' Get the line where the top of each character is aligned on an ink word
If myAnalysisHintNode.ContainsPropertyData( _
   PropertyGuidsForContextNodes.Midline) Then
    Dim myMidline() As Integer = _
        CType(myAnalysisHintNode.GetPropertyData( _
        PropertyGuidsForContextNodes.Midline), Integer())
End If
// Get the line where the top of each character is aligned on an ink word
if (myAnalysisHintNode.ContainsPropertyData(
    PropertyGuidsForContextNodes.Midline))
{
    int[] myMidline =
        (int[])myAnalysisHintNode.GetPropertyData(
        PropertyGuidsForContextNodes.Midline);
}

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

PropertyGuidsForContextNodes-Member

Microsoft.Ink-Namespace