public static iLogicForm Get(UiStorage storage, string formName, InventorParameters allowedParameters)
            {
                FormSpecification formSpec = storage.LoadFormSpecification(formName);
                var extractor = new FormExtractor(formSpec, allowedParameters);

                return(extractor.Run());
            }
示例#2
0
        private JObject GetGroupsAndParameters(string formName)
        {
            FormSpecification formSpec = storage.LoadFormSpecification(formName);

            return(GetGroupItems(formSpec, null));
        }