Partager via


IContainerStructureTag.SubHeadings Propriété

Définition

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 ».

S’applique à