Beispiel #1
0
 public CT_OutlinePr AddNewOutlinePr()
 {
     this.outlinePrField = new CT_OutlinePr();
     return this.outlinePrField;
 }
Beispiel #2
0
 public static CT_OutlinePr Parse(XmlNode node, XmlNamespaceManager namespaceManager)
 {
     if (node == null)
         return null;
     CT_OutlinePr ctObj = new CT_OutlinePr();
     ctObj.applyStyles = XmlHelper.ReadBool(node.Attributes["applyStyles"]);
     ctObj.summaryBelow = XmlHelper.ReadBool(node.Attributes["summaryBelow"]);
     ctObj.summaryRight = XmlHelper.ReadBool(node.Attributes["summaryRight"]);
     ctObj.showOutlineSymbols = XmlHelper.ReadBool(node.Attributes["showOutlineSymbols"]);
     return ctObj;
 }