WebPartZoneBase.CreateControlStyle Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates a set of style characteristics that apply to a zone control when it is visible.
protected:
override System::Web::UI::WebControls::Style ^ CreateControlStyle();
protected override System.Web.UI.WebControls.Style CreateControlStyle ();
override this.CreateControlStyle : unit -> System.Web.UI.WebControls.Style
Protected Overrides Function CreateControlStyle () As Style
Returns
A Style that contains style attributes for a WebPartZoneBase.
Remarks
The CreateControlStyle method creates a set of standard style attributes that apply to WebPartZoneBase zones. The style attributes apply only when a page is in a display mode in which a zone itself is visible, such as catalog, edit, or design display mode.
Notes to Inheritors
If you override the CreateControlStyle() method to set some specific properties on the created style, do not use the Style(StateBag) version of the constructor, which requires you to pass the control's StateBag object in as a parameter, resulting in the created Style object sharing the StateBag with the zone control. This causes rendering problems. Instead, use the Style() version of the constructor, so the Style object is independent of the control.