A newer version of this page is available.
Switch to the current version.
TreeViewNode.Text Property
Gets or sets the text displayed within the node content.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v18.2.dll
Declaration
[DefaultValue("Node")]
public string Text { get; set; }
<DefaultValue("Node")>
Public Property Text As String
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.
Examples
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
Feedback