Opc.Ua.ServerTest.TestCaseTreeCtrl.AllBTN_Click C# (CSharp) Method

AllBTN_Click() private method

private AllBTN_Click ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        private void AllBTN_Click(object sender, EventArgs e)
        {
            try
            {
                foreach (TreeNode node in NodesTV.Nodes)
                {
                    SetCheckState(node, true);
                }
            }
            catch (Exception exception)
            {
				GuiUtils.HandleException(this.Text, MethodBase.GetCurrentMethod(), exception);
            }
        }