Allows a designer to filter the set of properties the component it is designing will expose through the TypeDescriptor object. This method is called immediately after its corresponding "Pre" method. If you are overriding this method you should call the the base implementation after you perform your own filtering.
[Visual Basic] Overridable Public Sub PostFilterProperties( _ ByVal properties As IDictionary _ ) [C#] public virtual void PostFilterProperties( IDictionary properties ); [C++] public: virtual void PostFilterProperties( IDictionary* properties ); [JScript] public function PostFilterProperties( properties : IDictionary );
The augmented set of properties. If the method does not modify any properties, it may just return a reference to its input parameter. If you do make a change to the properties, you must create a new array.
ComponentDesigner Class | ComponentDesigner Members | System.ComponentModel.Design Namespace | IDesignerFilter