Skip to main content
A newer version of this page is available. .
Tab

TreeViewNode.Text Property

Gets or sets the text displayed within the node content.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue("Node")]
public string Text { get; set; }

Property Value

Type Default Description
String "Node"

A string value that specifies the node’s text content.

Remarks

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.

Example

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