Freigeben über


PropertyGuidsForContextNodes.AlignmentLevel-Feld

Gibt die GUID (Globally Unique Identifier) zum Abrufen und Festlegen der Ganzzahl an, die die Ausrichtungsebene für einen Absatz darstellt.

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

Syntax

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

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

Hinweise

Dieses Feld stellt die Ausrichtungsebene für einen ContextNode vom Typ Paragraph dar. Die Ausrichtungsebene ist die Anzahl der Einzüge oder Tabstopps eines Absatzes in Bezug auf andere Absätze. Die Ausrichtungsebene stellt keinen bestimmten Tabstoppabstand vom Rand dar.

Beispiele

Im folgenden Beispiel wird das AlignmentLevel-Feld veranschaulicht.

' Get the relative number of indents or tab stops on a paragraph
If myAnalysisHintNode.ContainsPropertyData( _
   PropertyGuidsForContextNodes.AlignmentLevel) Then
    Dim myAlignmentLevel As Integer = _
        CType(myAnalysisHintNode.GetPropertyData( _
        PropertyGuidsForContextNodes.AlignmentLevel), Integer)
End If
// Get the relative number of indents or tab stops on a paragraph
if (myAnalysisHintNode.ContainsPropertyData(
    PropertyGuidsForContextNodes.AlignmentLevel))
{
    int myAlignmentLevel = 
        (int)myAnalysisHintNode.GetPropertyData(
        PropertyGuidsForContextNodes.AlignmentLevel);
}

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