BaseDataListDesigner.OnAutoFormatApplied(DesignerAutoFormat) Method

Definition

Called when an automatic formatting scheme has been applied to the associated control.

public:
 override void OnAutoFormatApplied(System::Web::UI::Design::DesignerAutoFormat ^ appliedAutoFormat);
public override void OnAutoFormatApplied (System.Web.UI.Design.DesignerAutoFormat appliedAutoFormat);
override this.OnAutoFormatApplied : System.Web.UI.Design.DesignerAutoFormat -> unit
Public Overrides Sub OnAutoFormatApplied (appliedAutoFormat As DesignerAutoFormat)

Parameters

appliedAutoFormat
DesignerAutoFormat

A DesignerAutoFormat object that defines a style.

Remarks

The OnAutoFormatApplied method is called when a DesignerAutoFormat object is applied to the associated control that is derived from the BaseDataList class. A DesignerAutoFormat object defines a DesignerAutoFormatStyle object that is applied to the control.

A designer can override the OnAutoFormatApplied to inspect properties of the control or to take some other action.

Applies to

See also