Share via


RegionsExpandedEventArgs Constructors

Definition

Overloads

RegionsExpandedEventArgs(IEnumerable<ICollapsible>)

Initializes a new instance of RegionsExpandedEventArgs with the specified ICollapsible regions, assuming that they are not also being removed.

RegionsExpandedEventArgs(IEnumerable<ICollapsible>, Boolean)

Initializes a new instance of RegionsExpandedEventArgs with the specified ICollapsible regions.

RegionsExpandedEventArgs(IEnumerable<ICollapsible>)

Initializes a new instance of RegionsExpandedEventArgs with the specified ICollapsible regions, assuming that they are not also being removed.

public:
 RegionsExpandedEventArgs(System::Collections::Generic::IEnumerable<Microsoft::VisualStudio::Text::Outlining::ICollapsible ^> ^ expandedRegions);
public RegionsExpandedEventArgs (System.Collections.Generic.IEnumerable<Microsoft.VisualStudio.Text.Outlining.ICollapsible> expandedRegions);
new Microsoft.VisualStudio.Text.Outlining.RegionsExpandedEventArgs : seq<Microsoft.VisualStudio.Text.Outlining.ICollapsible> -> Microsoft.VisualStudio.Text.Outlining.RegionsExpandedEventArgs
Public Sub New (expandedRegions As IEnumerable(Of ICollapsible))

Parameters

expandedRegions
IEnumerable<ICollapsible>

The newly-expanded regions.

Applies to

RegionsExpandedEventArgs(IEnumerable<ICollapsible>, Boolean)

Initializes a new instance of RegionsExpandedEventArgs with the specified ICollapsible regions.

public:
 RegionsExpandedEventArgs(System::Collections::Generic::IEnumerable<Microsoft::VisualStudio::Text::Outlining::ICollapsible ^> ^ expandedRegions, bool removalPending);
public RegionsExpandedEventArgs (System.Collections.Generic.IEnumerable<Microsoft.VisualStudio.Text.Outlining.ICollapsible> expandedRegions, bool removalPending);
new Microsoft.VisualStudio.Text.Outlining.RegionsExpandedEventArgs : seq<Microsoft.VisualStudio.Text.Outlining.ICollapsible> * bool -> Microsoft.VisualStudio.Text.Outlining.RegionsExpandedEventArgs
Public Sub New (expandedRegions As IEnumerable(Of ICollapsible), removalPending As Boolean)

Parameters

expandedRegions
IEnumerable<ICollapsible>

The newly-expanded regions.

removalPending
Boolean

If these regions are being expanded as part of being removed.

Applies to