コード例 #1
0
ファイル: OrderEditForm.cs プロジェクト: distinct2010/dp2
        public static string GetXml(ItemEditControlBase control)
        {
            string strError = "";
            string strXml   = "";
            int    nRet     = control.GetData(false, out strXml, out strError);

            if (nRet == -1)
            {
                throw new Exception(strError);
            }
            return(strXml);
        }