NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Panel Web Control

The Panel control provides a container for other controls. This control is rendered as an HTML <DIV> element.

ASP+ Syntax

Required properties are noted in boldface type.

<asp:Panel id="Panel1" runat="server"
   BackImageUrl="url"
   HorizontalAlign="Center|Justify|Left|NotSet|Right"
   Wrap="True|False"
/>
   (Other controls declared here)
</asp:Panel>

Properties

Property Description
(Base control properties) The properties defined in Base Web Control Properties.
BackImageUrl The URL of an image to display behind the control.
HorizontalAlign The alignment of the panel with respect to surrounding text.

When programming, you set this property using the HorizontalAlign enumeration.

Wrap True if content should be wrapped within the panel; false othewise. The default is true.

Example

To be supplied.

See Also

Web Forms Controls by Function |