Пример #1
0
 public static CT_Title Parse(XmlNode node, XmlNamespaceManager namespaceManager)
 {
     if (node == null)
         return null;
     CT_Title ctObj = new CT_Title();
     ctObj.extLst = new List<CT_Extension>();
     foreach (XmlNode childNode in node.ChildNodes)
     {
         if (childNode.LocalName == "tx")
             ctObj.tx = CT_Tx.Parse(childNode, namespaceManager);
         else if (childNode.LocalName == "layout")
             ctObj.layout = CT_Layout.Parse(childNode, namespaceManager);
         else if (childNode.LocalName == "overlay")
             ctObj.overlay = CT_Boolean.Parse(childNode, namespaceManager);
         else if (childNode.LocalName == "spPr")
             ctObj.spPr = CT_ShapeProperties.Parse(childNode, namespaceManager);
         else if (childNode.LocalName == "txPr")
             ctObj.txPr = CT_TextBody.Parse(childNode, namespaceManager);
         else if (childNode.LocalName == "extLst")
             ctObj.extLst.Add(CT_Extension.Parse(childNode, namespaceManager));
     }
     return ctObj;
 }
Пример #2
0
 public CT_CatAx()
 {
     this.extLstField = new List<CT_Extension>();
     this.noMultiLvlLblField = new CT_Boolean();
     this.tickMarkSkipField = new CT_Skip();
     this.tickLblSkipField = new CT_Skip();
     this.lblOffsetField = new CT_LblOffset();
     this.lblAlgnField = new CT_LblAlgn();
     this.autoField = new CT_Boolean();
     this.crossAxField = new CT_UnsignedInt();
     this.tickLblPosField = new CT_TickLblPos();
     this.minorTickMarkField = new CT_TickMark();
     this.majorTickMarkField = new CT_TickMark();
     this.numFmtField = new CT_NumFmt();
     this.titleField = new CT_Title();
     this.minorGridlinesField = new CT_ChartLines();
     this.majorGridlinesField = new CT_ChartLines();
     this.axPosField = new CT_AxPos();
     this.deleteField = new CT_Boolean();
     this.scalingField = new CT_Scaling();
     this.axIdField = new CT_UnsignedInt();
 }
Пример #3
0
 public CT_ValAx()
 {
     this.extLstField = new List<CT_Extension>();
     this.dispUnitsField = new CT_DispUnits();
     this.minorUnitField = new CT_AxisUnit();
     this.majorUnitField = new CT_AxisUnit();
     this.crossBetweenField = new CT_CrossBetween();
     this.crossAxField = new CT_UnsignedInt();
     this.tickLblPosField = new CT_TickLblPos();
     this.minorTickMarkField = new CT_TickMark();
     this.majorTickMarkField = new CT_TickMark();
     this.numFmtField = new CT_NumFmt();
     this.titleField = new CT_Title();
     this.minorGridlinesField = new CT_ChartLines();
     this.majorGridlinesField = new CT_ChartLines();
     this.axPosField = new CT_AxPos();
     this.deleteField = new CT_Boolean();
     this.scalingField = new CT_Scaling();
     this.axIdField = new CT_UnsignedInt();
 }
Пример #4
0
 public CT_DateAx()
 {
     this.extLstField = new List<CT_Extension>();
     this.minorTimeUnitField = new CT_TimeUnit();
     this.minorUnitField = new CT_AxisUnit();
     this.majorTimeUnitField = new CT_TimeUnit();
     this.majorUnitField = new CT_AxisUnit();
     this.baseTimeUnitField = new CT_TimeUnit();
     this.lblOffsetField = new CT_LblOffset();
     this.autoField = new CT_Boolean();
     this.crossAxField = new CT_UnsignedInt();
     this.tickLblPosField = new CT_TickLblPos();
     this.minorTickMarkField = new CT_TickMark();
     this.majorTickMarkField = new CT_TickMark();
     this.numFmtField = new CT_NumFmt();
     this.titleField = new CT_Title();
     this.minorGridlinesField = new CT_ChartLines();
     this.majorGridlinesField = new CT_ChartLines();
     this.axPosField = new CT_AxPos();
     this.deleteField = new CT_Boolean();
     this.scalingField = new CT_Scaling();
     this.axIdField = new CT_UnsignedInt();
 }