FiltersChangedEventArgs(String, IEntryFilter, IEntryFilter) Constructor
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.
Create an instance of FiltersChangedEventArgs with the specified key.
public:
FiltersChangedEventArgs(System::String ^ key, Microsoft::VisualStudio::Shell::TableControl::IEntryFilter ^ oldFilter, Microsoft::VisualStudio::Shell::TableControl::IEntryFilter ^ newFilter);
public:
FiltersChangedEventArgs(Platform::String ^ key, Microsoft::VisualStudio::Shell::TableControl::IEntryFilter ^ oldFilter, Microsoft::VisualStudio::Shell::TableControl::IEntryFilter ^ newFilter);
FiltersChangedEventArgs(std::wstring const & key, Microsoft::VisualStudio::Shell::TableControl::IEntryFilter const & oldFilter, Microsoft::VisualStudio::Shell::TableControl::IEntryFilter const & newFilter);
public FiltersChangedEventArgs (string key, Microsoft.VisualStudio.Shell.TableControl.IEntryFilter oldFilter, Microsoft.VisualStudio.Shell.TableControl.IEntryFilter newFilter);
new Microsoft.VisualStudio.Shell.TableControl.FiltersChangedEventArgs : string * Microsoft.VisualStudio.Shell.TableControl.IEntryFilter * Microsoft.VisualStudio.Shell.TableControl.IEntryFilter -> Microsoft.VisualStudio.Shell.TableControl.FiltersChangedEventArgs
Public Sub New (key As String, oldFilter As IEntryFilter, newFilter As IEntryFilter)
Parameters
- key
- String
Key name passed to SetFilter(String, IEntryFilter).
- oldFilter
- IEntryFilter
The filter associated with key
before the change.
- newFilter
- IEntryFilter
The filter associated with key
after the change..