Table of Contents
AutoCheckChildren Property

Specifies if changing a TreeNode's CheckState property to Checked automatically changes all of its child nodes' CheckState property to Checked.

Syntax
 public Boolean AutoCheckChildren { get; set; }
Remarks

By default, this property is false - means changing a TreeNode's CheckState to Checked does NOT have any effects on its child nodes.

By setting this property to true, if a TreeNode's CheckState is changed to Checked, all of its child node's CheckState will be changed to Checked.

See Also