DataBoundControlDesigner.PreFilterProperties(IDictionary) Method

Definition

Overridden by the designer to shadow run-time properties of the data-bound control with corresponding properties implemented by the designer.

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

An IDictionary object containing the properties to filter.

Remarks

Override the PreFilterProperties method to perform any additional actions required when the data source of the underlying data-bound control changes.

Notes to Inheritors

If you override the PreFilterProperties(IDictionary) method, call the base implementation before performing other processing.

Applies to

See also