PageCatalogPart.HorizontalAlign Property

Definition

This inherited property is not used by the Web Parts control set when rendering a PageCatalogPart control. The property is overridden only for the purpose of preventing it from appearing in Microsoft Visual Studio 2005 designer tools.

public:
 virtual property System::Web::UI::WebControls::HorizontalAlign HorizontalAlign { System::Web::UI::WebControls::HorizontalAlign get(); void set(System::Web::UI::WebControls::HorizontalAlign value); };
[System.ComponentModel.Browsable(false)]
[System.Web.UI.Themeable(false)]
public override System.Web.UI.WebControls.HorizontalAlign HorizontalAlign { get; set; }
[<System.ComponentModel.Browsable(false)>]
[<System.Web.UI.Themeable(false)>]
member this.HorizontalAlign : System.Web.UI.WebControls.HorizontalAlign with get, set
Public Overrides Property HorizontalAlign As HorizontalAlign

Property Value

A HorizontalAlign that indicates the type of horizontal alignment used in rendering the control.

Attributes

Remarks

The HorizontalAlign property, as a member of the PageCatalogPart control, is not used anywhere within the Web Parts control set for rendering the control. Therefore, you should not use this property; setting it has no effect on rendering.

To prevent developers from using this property, code attributes are set on it to hide it in Visual Studio. When you work with a PageCatalogPart control in Visual Studio, the HorizontalAlign property is not visible in the Properties pane or IntelliSense.

If you want to use this property, you need to create a custom class that inherits from the CatalogPart class. The custom class can either use the inherited HorizontalAlign property as it is, or override it and change its behavior.

This property cannot be set by themes or style sheet themes. For more information, see ThemeableAttribute and ASP.NET Themes and Skins.

Applies to

See also