Example #1
0
        /**********************************************************************************************
         * Mehtod   명 : DisplayWorkflowSchemeScript
         * 개   발  자 : 양영석
         * 생   성  일 : 2014-04-02
         * 용       도 : WorkflowSchemeScript을 화면에 보여줌.
         * Input    값 : DisplayWorkflowSchemeScript(가로최소Point, 가로최대Point, 세로최소Point, 세로최대Point)
         * Ouput    값 : string
         **********************************************************************************************/
        /// <summary>
        /// DisplayWorkflowSchemeScript : WorkflowSchemeScript을 화면에 보여줌.
        /// </summary>
        /// <param name="MinWidth">가로최소Point</param>
        /// <param name="MaxWidth">가로최대Point</param>
        /// <param name="MinHeight">세로최소Point</param>
        /// <param name="MaxHeight">세로최대Point</param>
        /// <returns>string</returns>
        public string DisplayWorkflowSchemeScript(string MinWidth, string MaxWidth, string MinHeight, string MaxHeight)
        {
            string result = string.Empty;

            try
            {
                WorkflowMgr workflowMgr = new WorkflowMgr();

                result = workflowMgr.DisplayWorkflowSchemeScript(Int32.Parse(MinWidth), Int32.Parse(MaxWidth), Int32.Parse(MinHeight), Int32.Parse(MaxHeight));
                return result;
            }
            catch (Exception ex)
            {
                // Log Exception
                ExceptionHelper.logException(ex);
                return null;
            }
        }