Partager via


PropertyGuidsForContextNodes.AlignmentLevel, champ

Mise à jour : November 2007

Spécifie l'identificateur global unique (GUID) permettant d'obtenir et de définir l'entier qui représente le niveau d'alignement d'un paragraphe.

Espace de noms :  System.Windows.Ink
Assembly :  IAWinFX (dans IAWinFX.dll)

Syntaxe

'Déclaration
Public Shared ReadOnly AlignmentLevel As Guid
'Utilisation
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

Notes

Le champ AlignmentLevel représente le niveau d'alignement sur un ContextNode de type Paragraph. Le niveau d'alignement correspond au nombre de retraits ou de tabulations de chaque paragraphe par rapport aux autres paragraphes. Le niveau d'alignement ne représente pas de distance d'onglet spécifique depuis la marge.

Exemples

L'exemple suivant recherche un AlignmentLevel existant dans la méthode ContainsPropertyData d'un AnalysisHintNode. Si le champ AlignmentLevel existe, il est converti à un nombre entier et spécifie la variable, myAlignmentLevel.

' 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);
}

Plateformes

Windows Vista

Le .NET Framework et le .NET Compact Framework ne prennent pas en charge toutes les versions de chaque plateforme. Pour obtenir la liste des versions prises en charge, consultez Configuration requise du .NET Framework.

Informations de version

.NET Framework

Pris en charge dans : 3.0

Voir aussi

Référence

PropertyGuidsForContextNodes, classe

Membres PropertyGuidsForContextNodes

System.Windows.Ink, espace de noms