コード例 #1
0
        protected override void RefreshTag()
        {
            IConfigXmlItem colsInXml = this._runtimeFormat.GetSubItem(
                RuntimeFormatServerContext.ArgKeySummaryCols);
            Hashtable summaryCols = new Hashtable();

            this._tag = summaryCols;
            if (colsInXml != null)
            {
                for (int i = 0; i < colsInXml.SubItemCount; i++)
                {
                    IConfigXmlItem item   = colsInXml.GetSubItem(i);
                    string         colKey = item.GetProperty(ConfigXmlContext.XmlKeyId).ToString();
                    summaryCols[colKey] = item.GetProperty(RuntimeFormatServerContext.XmlKeyOperatorType);
                }
            }
        }
コード例 #2
0
        protected override void RefreshTag()
        {
            IConfigXmlItem colsInXml = this._runtimeFormat.GetSubItem(
                RuntimeFormatServerContext.ArgKeyDymanicAddedCols);
            ArrayList addedCols = new ArrayList();

            this._tag = addedCols;
            if (colsInXml != null)
            {
                for (int i = 0; i < colsInXml.SubItemCount; i++)
                {
                    IConfigXmlItem item   = colsInXml.GetSubItem(i);
                    string         colKey = item.GetProperty(ConfigXmlContext.XmlKeyId).ToString();
                    addedCols.Add(colKey);
                }
            }
        }