Skip to content

Commit d9f4d5e

Browse files
Update README.md
1 parent 744576b commit d9f4d5e

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

README.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,13 @@
1-
# How-to-count-checked-nodes-of-WF-TreeViewAdv
2-
This respository contains the sample that how to count the checked nodes of WF TreeViewAdv control.
1+
# How to count all checked nodes of WinForms TreeViewAdv?
2+
3+
You can get the count for all checked nodes in [WinForms TreeViewAdv](https://www.syncfusion.com/winforms-ui-controls/treeview) control by using [CheckedNodes](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Tools.TreeViewAdv.html#Syncfusion_Windows_Forms_Tools_TreeViewAdv_CheckedNodes) property. Refer the below code for your reference.
4+
5+
**C#**
6+
```csharp
7+
int checkedCount = treeView1.CheckedNodes.Count;
8+
```
9+
10+
**VB.Net**
11+
```csharp
12+
Dim checkedCount As Integer = treeView1.CheckedNodes.Count
13+
```

0 commit comments

Comments
 (0)