IContainerStructureTag.SubHeadings 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 SubHeadingStructureData des sous-en-têtes du bloc de code représenté par cette balise.
public System.Collections.Generic.IReadOnlyList<Microsoft.VisualStudio.Text.Tagging.SubHeadingStructureData>? SubHeadings { get; }
member this.SubHeadings : System.Collections.Generic.IReadOnlyList<Microsoft.VisualStudio.Text.Tagging.SubHeadingStructureData>
Public ReadOnly Property SubHeadings As IReadOnlyList(Of SubHeadingStructureData)
Valeur de propriété
Remarques
Exemple :
try
{
//something;
}
catch
{
// something else;
}
SubHeadings IContainerStructureTag du représentant « try » contient des sous-éléments représentant « catch » et « finally ». serait identique au HeaderSpan du bloc d’instruction IStructureTag « try » 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 « catch ».