Skip to main content

BootstrapTreeViewNode(String, String, String, String) Constructor

Initializes a new instance of the BootstrapTreeViewNode class with the specified settings.

Namespace: DevExpress.Web.Bootstrap

Assembly: DevExpress.Web.Bootstrap.v23.2.dll

NuGet Package: DevExpress.Web.Bootstrap

Declaration

public BootstrapTreeViewNode(
    string text,
    string name,
    string iconCssClass,
    string navigateUrl
)

Parameters

Name Type Description
text String

A String value specifying the node’s display text. Initializes the node’s TreeViewNode.Text property.

name String

A String value specifying the name which identifies the created node. Initializes the node’s TreeViewNode.Name property.

iconCssClass String

A String value specifying the node image’s CSS class. Initializes the ImagePropertiesBase.Url property of the node’s BootstrapTreeViewNode.IconCssClass.

navigateUrl String

A String value specifying the URL to which the browser navigates when the node is clicked. Initializes the node’s TreeViewNode.NavigateUrl property.

See Also