ComponentDesigner.PostFilterProperties Method
Allows a designer to change or remove items from the set of properties that it exposes through a TypeDescriptor.
[Visual Basic] Protected Overridable Sub PostFilterProperties( _ ByVal properties As IDictionary _ ) [C#] protected virtual void PostFilterProperties( IDictionary properties ); [C++] protected: virtual void PostFilterProperties( IDictionary* properties ); [JScript] protected function PostFilterProperties( properties : IDictionary );
Parameters
- properties
- The properties for the class of the component.
Remarks
This method provides a way to change or remove the items within the dictionary of properties that are exposed through a TypeDescriptor.
The keys in the dictionary of properties are the names of the properties. The objects are of type PropertyDescriptor. This method is called immediately after PreFilterProperties.
Notes to Implementers: You can directly filter the dictionary that is accessible through the properties parameter, or you can leave it unchanged. If you override this method, call the base implementation after you perform your own filtering.
Requirements
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
.NET Framework Security:
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries From Partially Trusted Code
See Also
ComponentDesigner Class | ComponentDesigner Members | System.ComponentModel.Design Namespace | TypeDescriptor | IDesignerFilter | IDesigner