ControlDesigner.OnAutoFormatApplied(DesignerAutoFormat) Method

Definition

Called when a predefined, automatic formatting scheme has been applied to the associated control.

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

Parameters

appliedAutoFormat
DesignerAutoFormat

A DesignerAutoFormat object that defines a style.

Remarks

The OnAutoFormatApplied method is called after a DesignerAutoFormat object has applied a predefined format to the associated control. A DesignerAutoFormat object defines the automatic formatting scheme name and style settings that are applied to the control.

Classes deriving from the ControlDesigner class override the OnAutoFormatApplied method to perform additional processing when an automatic formatting scheme is applied to the associated control.

Applies to

See also