Freigeben über


PropertyGuidsForContextNodesBase.Baseline-Feld

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

Namespace:  System.Windows.Ink.AnalysisCore
Assembly:  IACore (in IACore.dll)

Syntax

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

value = PropertyGuidsForContextNodesBase.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äre 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, Windows XP SP2, Windows Server 2003

.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

PropertyGuidsForContextNodesBase-Klasse

PropertyGuidsForContextNodesBase-Member

System.Windows.Ink.AnalysisCore-Namespace