//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ namespace System.Web.UI.WebControls { using System; /// /// Specifies the action the TreeView takes when a node is selected /// public enum TreeNodeSelectAction { /// /// Select the node /// Select = 0, /// /// Expand the node /// Expand = 1, /// /// Select and expand the node /// SelectExpand = 2, /// /// Do nothing when clicking on a node /// None = 3 } }