CreateUserWizardDesigner.PreFilterProperties(IDictionary) Method
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.
Exposes the properties associated with each default step through the property grid on the designer tool.
protected:
override void PreFilterProperties(System::Collections::IDictionary ^ properties);
protected override void PreFilterProperties (System.Collections.IDictionary properties);
override this.PreFilterProperties : System.Collections.IDictionary -> unit
Protected Overrides Sub PreFilterProperties (properties As IDictionary)
Parameters
- properties
- IDictionary
The PropertyDescriptor objects that represent the properties of the component's base class. The keys in the dictionary of properties are property names.
Remarks
The PreFilterProperties method provides a way to add items to the dictionary of properties that a designer exposes.
The keys in the dictionary of properties are the names of the properties. The objects are of type PropertyDescriptor.
Notes to Inheritors
You can directly modify the dictionary that is accessible through the properties
parameter, or you can leave it unchanged. If you are overriding the PreFilterProperties(IDictionary) method, call the base implementation before you perform your own filtering.