RegionsExpandedEventArgs Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.