public static CT_AutoSortScope Parse(XmlNode node, XmlNamespaceManager namespaceManager) { if (node == null) return null; CT_AutoSortScope ctObj = new CT_AutoSortScope(); foreach (XmlNode childNode in node.ChildNodes) { if (childNode.LocalName == "pivotArea") ctObj.pivotArea = CT_PivotArea.Parse(childNode, namespaceManager); } return ctObj; }
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; }