BaseChildNode Class
This class is the base class for child nodes of parent controls.
Syntax
Visual Basic MustInherit Public Class BaseChildNode Inherits Object Implements IStateManager, ICloneable C# public abstract class BaseChildNode : Object, IStateManager, ICloneable Managed C++ public: __gc __abstract class BaseChildNode : public Object, IStateManager, ICloneable JScript public abstract class BaseChildNode extends Object, IStateManager, ICloneable
Inheritance Hierarchy
Members Table
The following table lists the members exposed by the BaseChildNode object.
Attribute Property Description ID ID Sets or retrieves a value that indicates the string that identifies the object. IStateManager.IsTrackingViewState Retrieves a value indicating whether the server control is tracking its view state changes. Parent Retrieves the parent object of a node. ViewState Retrieves an instance of the StateBag class that contains the ViewState information.
Method Description AddAttributesToRender Adds attributes to the HtmlTextWriter object. Clone Creates a new object that is a copy of the current instance. IStateManager.LoadViewState Loads the node's previously saved ViewState. IStateManager.SaveViewState Saves changes to the node's ViewState to an object. IStateManager.TrackViewState Instructs the node to track changes to its ViewState. LoadViewState Loads the node's previously saved ViewState. Render Directs content to a provided HtmlTextWriter output stream. RenderDesignerPath Implements the rendering path for the Microsoft Visual Studio .NET Editor. RenderDownLevelPath Implements the rendering path for downlevel browsers. With Windows Internet Explorer WebControls, a downlevel browser is Microsoft Internet Explorer 5.01 or earlier or a browser other than Internet Explorer. RenderUpLevelPath Implements the rendering path for uplevel browsers. With WebControls, an uplevel browser is Internet Explorer 5.5 or later. SaveViewState Saves changes to the node's ViewState to an object. SetViewStateClean Sets all items within the StateBag to be clean. SetViewStateDirty Sets all items within the StateBag to be dirty. ToString Retrieves a string that indicates the current object. TrackViewState Instructs the node to track changes to its ViewState. WriteAttributes Writes attributes to the HtmlTextWriter object.
Class Information
Namespace Microsoft.Web.UI.WebControls Assembly Microsoft.Web.UI.WebControls.dll
See Also