ListView.BorderWidth Property (System.Web.UI.WebControls)

Switch View :
ScriptFree
.NET Framework Class Library
ListView.BorderWidth Property

Overrides the WebControl.BorderWidth property. Setting this property is not supported by the ListView control.

Namespace:  System.Web.UI.WebControls
Assembly:  System.Web.Extensions (in System.Web.Extensions.dll)
Syntax

Visual Basic
<BrowsableAttribute(False)> _
Public Overrides Property BorderWidth As Unit
C#
[BrowsableAttribute(false)]
public override Unit BorderWidth { get; set; }
Visual C++
[BrowsableAttribute(false)]
public:
virtual property Unit BorderWidth {
	Unit get () override;
	void set (Unit value) override;
}
F#
[<BrowsableAttribute(false)>]
abstract BorderWidth : Unit with get, set
[<BrowsableAttribute(false)>]
override BorderWidth : Unit with get, set
ASP.NET
<asp:ListView BorderWidth="Unit" />

Property Value

Type: System.Web.UI.WebControls.Unit
Unit.Empty, which indicates that this property is not set.
Exceptions

Exception Condition
NotSupportedException

An attempt was made to set the BorderWidth property.

Remarks

Style properties are not supported by the ListView control. If you try to set the BorderWidth property, a NotSupportedException exception is thrown. If you get the property, it returns the default value of the corresponding property of the base class.

To style the ListView control, you must style the controls inside the ListView templates by using cascading style sheets (CSS) classes or inline style elements.

Version Information

.NET Framework

Supported in: 4, 3.5
Platforms

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
See Also

Reference

Other Resources