コード例 #1
0
 public CT_Items AddNewItems()
 {
     this.itemsField = new CT_Items();
     return this.itemsField;
 }
コード例 #2
0
 public static CT_Items Parse(XmlNode node, XmlNamespaceManager namespaceManager)
 {
     if (node == null)
         return null;
     CT_Items ctObj = new CT_Items();
     if (node.Attributes["count"] != null)
         ctObj.count = XmlHelper.ReadUInt(node.Attributes["count"]);
     ctObj.item = new List<CT_Item>();
     foreach (XmlNode childNode in node.ChildNodes)
     {
         if (childNode.LocalName == "item")
             ctObj.item.Add(CT_Item.Parse(childNode, namespaceManager));
     }
     return ctObj;
 }
コード例 #3
0
 public CT_PivotField()
 {
     this.extLstField = new CT_ExtensionList();
     this.autoSortScopeField = new CT_AutoSortScope();
     this.itemsField = new CT_Items();
     this.dataFieldField = false;
     this.showDropDownsField = true;
     this.hiddenLevelField = false;
     this.compactField = true;
     this.allDrilledField = false;
     this.outlineField = true;
     this.subtotalTopField = true;
     this.dragToRowField = true;
     this.dragToColField = true;
     this.multipleItemSelectionAllowedField = false;
     this.dragToPageField = true;
     this.dragToDataField = true;
     this.dragOffField = true;
     this.showAllField = true;
     this.insertBlankRowField = false;
     this.serverFieldField = false;
     this.insertPageBreakField = false;
     this.autoShowField = false;
     this.topAutoShowField = true;
     this.hideNewItemsField = false;
     this.measureFilterField = false;
     this.includeNewItemsInFilterField = false;
     this.itemPageCountField = ((uint)(10));
     this.sortTypeField = ST_FieldSortType.manual;
     this.nonAutoSortDefaultField = false;
     this.defaultSubtotalField = true;
     this.sumSubtotalField = false;
     this.countASubtotalField = false;
     this.avgSubtotalField = false;
     this.maxSubtotalField = false;
     this.minSubtotalField = false;
     this.productSubtotalField = false;
     this.countSubtotalField = false;
     this.stdDevSubtotalField = false;
     this.stdDevPSubtotalField = false;
     this.varSubtotalField = false;
     this.varPSubtotalField = false;
     this.showPropCellField = false;
     this.showPropTipField = false;
     this.showPropAsCaptionField = false;
     this.defaultAttributeDrillStateField = false;
 }