TreeNodeStyleCollection.Remove(TreeNodeStyle) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Removes the specified TreeNodeStyle object from the TreeNodeStyleCollection object.
public:
void Remove(System::Web::UI::WebControls::TreeNodeStyle ^ style);
public void Remove (System.Web.UI.WebControls.TreeNodeStyle style);
member this.Remove : System.Web.UI.WebControls.TreeNodeStyle -> unit
Public Sub Remove (style As TreeNodeStyle)
Parameters
- style
- TreeNodeStyle
The TreeNodeStyle to remove.
Remarks
Use the Remove method to remove the specified TreeNodeStyle object from the collection. The indexes of the remaining objects are updated to be consecutive.
As an alternative, you can remove a node at specific index by using the RemoveAt method. You can also remove every node in the collection by using the Clear method.