Freigeben über


PropertyGuidsForContextNodes.Baseline-Feld

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

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

Syntax

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

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

Hinweise

Dieses Feld stellt die Grundlinie für einen ContextNode vom Typ InkWord dar. Grundlinien sind die imaginären horizontale Linien, die als Basis für das Anordnen sämtlicher Zeichen (ausgenommen Unterlängen) in einer Textzeile verwendet werden.

Beispiele

Im folgenden Beispiel wird das Baseline-Feld veranschaulicht.

' Get the base of each character in a line of text
If myAnalysisHintNode.ContainsPropertyData( _
   PropertyGuidsForContextNodes.Baseline) Then
    Dim myBaseline() As Integer = _
        CType(myAnalysisHintNode.GetPropertyData( _
        PropertyGuidsForContextNodes.Baseline), Integer())
End If
// Get the base of each character in a line of text
if (myAnalysisHintNode.ContainsPropertyData(
    PropertyGuidsForContextNodes.Baseline))
{
    int[] myBaseline =
        (int[])myAnalysisHintNode.GetPropertyData(
        PropertyGuidsForContextNodes.Baseline);
}

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