コード例 #1
0
        /// <summary>
        /// UnCheck Map Information items
        /// </summary>
        public Boolean UnCheckMapInformations(string[] mapInfoType)
        {
            int i = 0;

            while (i < mapInfoType.Length)
            {
                if (CustomerMapInfoCheckBoxField.IsCommonUnCheck(mapInfoType[i]))
                {
                    i++;
                }
                else
                {
                    return(false);
                }
            }
            return(true);
        }