WebControl.Width Property
Assembly: System.Web (in system.web.dll)
'Declaration Public Overridable Property Width As Unit 'Usage Dim instance As WebControl Dim value As Unit value = instance.Width instance.Width = value
/** @property */ public Unit get_Width () /** @property */ public void set_Width (Unit value)
public function get Width () : Unit public function set Width (value : Unit)
Not applicable.
Property Value
A Unit that represents the width of the control. The default is Empty.Use the Width property to specify the width of the Web server control.
Note: |
|---|
| This property does not render for all controls in browsers earlier than Microsoft Internet Explorer version 4. Controls that do not render this property in earlier browsers include Label, HyperLink, LinkButton, and any validation controls. The CheckBoxList, RadioButtonList and DataList also do not render this property in earlier browsers when their RepeatLayout property is set to RepeatLayout.Flow. Furthermore, only unit types of Pixel and Percentage are supported in earlier browsers. |
Because this property is nonstandard HTML, Web server controls that display as a table, such as Table and DataGrid, do not support this property in browsers earlier than Microsoft Internet Explorer version 4.
Note: |
|---|
| To set the Width property declaratively to a unit type other than the default of Pixel, you must create a new unit type specific to the unit type you want. For example, to set a control's Width property to a percentage value of 100, you could do the following: myWebControl.width = Unit.Percentage(100); For more information on the unit types available for the Width property, see the Unit class. |
The following example illustrates how to declaratively set the Width property of the Table control, inherited from the WebControl base class.
<%@ Page Language="VB" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <head id="Head2" runat="server"> <title>WebControl Example</title> </head> <body> <form id="form1" runat="server"> <div> <h3>Width Property of a Web Control</h3> <asp:Table id="Table1" runat="server" CellPadding="10" GridLines="Both" Width="350"> <asp:TableRow> <asp:TableCell> Row 0, Col 0 </asp:TableCell> <asp:TableCell> Row 0, Col 1 </asp:TableCell> </asp:TableRow> <asp:TableRow> <asp:TableCell> Row 1, Col 0 </asp:TableCell> <asp:TableCell> Row 1, Col 1 </asp:TableCell> </asp:TableRow> </asp:Table> </div> </form> </body> </html>
Note: