NotifyPopulateRequired() private method

private NotifyPopulateRequired ( TreeNode node ) : void
node TreeNode
return void
Example #1
0
        internal void Populate()
        {
            if (tree == null)
            {
                return;
            }

            populating = true;
            tree.NotifyPopulateRequired(this);
            populating = false;
            Populated  = true;
        }