aspnet-devexpress-dot-web-dot-treeviewnode-58cee9a8.md
Gets or sets the text displayed within the node content.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
[DefaultValue("Node")]
public string Text { get; set; }
<DefaultValue("Node")>
Public Property Text As String
| Type | Default | Description |
|---|---|---|
| String | "Node" |
A string value that specifies the node’s text content.
|
The Text property specifies the node’s text content. A node can be obtained by its Text property via the TreeViewNodeCollection.FindByText method or ASPxClientTreeView.GetNodeByText and ASPxClientTreeViewNode.GetNodeByText methods on the client side.
The code below demonstrates how you can get a node’s text by its Name property value.
string NodeText = ASPxTreeView1.Nodes.FindByName("NodeName").Text;
See Also