TreeNodeStyleCollection.Remove(TreeNodeStyle) Method

Definition

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.

Applies to

See also