IStructureTag2.PrimaryHeaderSpan Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient le facultatif Span de l’en-tête principal du bloc de code représenté par cette balise.
public Microsoft.VisualStudio.Text.Span? PrimaryHeaderSpan { get; }
member this.PrimaryHeaderSpan : Nullable<Microsoft.VisualStudio.Text.Span>
Public ReadOnly Property PrimaryHeaderSpan As Nullable(Of Span)
Valeur de propriété
Remarques
Par exemple, dans l’extrait de code suivant,
if (condition1)
{
//something;
}
else
{
// something else;
}
PrimaryHeaderSpan IStructureTag2 du bloc d’instructions représentant « else » serait identique au HeaderSpan du bloc d’instruction IStructureTag « if » représentant. Cela permet aux fonctionnalités de visualisation de structure de fournir un contexte plus utile lors de la visualisation des blocs de structure « else ».