Example #1
0
        public FormGroup GetGroup(string path)
        {
            if (path == null)
            {
                throw new ArgumentNullException();
            }

            FormGroup fg = formGroup.GetGroup(path);

            if (fg == null)
            {
                throw new ArgumentException("path");
            }

            return(fg);
        }