TreeView.VisibleCount Property

Definition

Gets the number of tree nodes that can be fully visible in the tree view control.

C#
[System.ComponentModel.Browsable(false)]
public int VisibleCount { get; }

Property Value

The number of TreeNode items that can be fully visible in the TreeView control.

Attributes

Remarks

The VisibleCount value can be greater than the number of tree nodes in the tree view. The value is calculated by dividing the height of the client window by the height of a tree node item. The result is the total number of TreeNode objects that the TreeView can display within its current dimensions.

Applies to

Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

See also