.NET Framework Class Library
WebControl..::.CopyBaseAttributes Method

Copies the properties not encapsulated by the Style object from the specified Web server control to the Web server control that this method is called from. This method is used primarily by control developers.

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

Visual Basic (Declaration)
Public Sub CopyBaseAttributes ( _
    controlSrc As WebControl _
)
Visual Basic (Usage)
Dim instance As WebControl
Dim controlSrc As WebControl

instance.CopyBaseAttributes(controlSrc)
C#
public void CopyBaseAttributes(
    WebControl controlSrc
)
Visual C++
public:
void CopyBaseAttributes(
    WebControl^ controlSrc
)
JScript
public function CopyBaseAttributes(
    controlSrc : WebControl
)

Parameters

controlSrc
Type: System.Web.UI.WebControls..::.WebControl
A WebControl that represents the source control with properties to be copied to the Web server control that this method is called from.
Exceptions

ExceptionCondition
ArgumentNullException

controlSrc is nullNothingnullptra null reference (Nothing in Visual Basic).

Remarks

The CopyBaseAttributes method copies the AccessKey, Enabled, ToolTip, TabIndex, and Attributes properties from the specified Web server control to the Web server control that this method is called from. This is commonly used in cases where a Web server control works by dynamically creating new controls while it is rendering and using the controls. This method is useful in this situation because it copies all properties of Web server controls not encapsulated by the Style object so they can be placed on the outermost control of a tag that is being rendered.

Platforms

Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Version Information

.NET Framework

Supported in: 3.5, 3.0, 2.0, 1.1, 1.0
See Also

Reference

Other Resources

Tags :


Page view tracker