Nanook.QueenBee.EditorForm.addSubItemsToGui C# (CSharp) Method

addSubItemsToGui() private method

private addSubItemsToGui ( QbItemBase parent, int indent ) : void
parent Nanook.QueenBee.Parser.QbItemBase
indent int
return void
        private void addSubItemsToGui(QbItemBase parent, int indent)
        {
            foreach (QbItemBase itm in parent.Items)
            {
                addItemToGui(itm, indent);
                addSubItemsToGui(itm, indent + 1);
            }
        }
EditorForm