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.
[Visual Basic] Public Sub CopyBaseAttributes( _ ByVal controlSrc As WebControl _ ) [C#] public void CopyBaseAttributes( WebControl controlSrc ); [C++] public: void CopyBaseAttributes( WebControl* controlSrc ); [JScript] public function CopyBaseAttributes( controlSrc : WebControl );
Parameters
- controlSrc
- A WebControl that represents the source control with properties to be copied to the Web server control that this method is called from.
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.
Requirements
Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family
See Also
WebControl Class | WebControl Members | System.Web.UI.WebControls Namespace | Style