Skip to main content
Tab

TreeViewVirtualNode.Checked Property

Gets or sets whether the virtual node is checked.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public override bool Checked { get; set; }

Property Value

Type Description
Boolean

true if the node is checked; otherwise, false.

Remarks

Use the Checked property to specify whether the node is checked in virtual mode.

To allow end-users to check nodes, set the ASPxTreeView.AllowCheckNodes property to true. You can disable the check box for a particular node, by setting its AllowCheck property to false.

Note

The Checked property synchronizes its value with the node’s TreeViewVirtualNode.CheckState property.

See Also