Exemplo n.º 1
0
 public static CT_SplitType Parse(XmlNode node, XmlNamespaceManager namespaceManager)
 {
     if (node == null)
         return null;
     CT_SplitType ctObj = new CT_SplitType();
     if (node.Attributes["val"] != null)
         ctObj.val = (ST_SplitType)Enum.Parse(typeof(ST_SplitType), node.Attributes["val"].Value);
     return ctObj;
 }
Exemplo n.º 2
0
 public CT_OfPieChart()
 {
     this.extLstField = new List<CT_Extension>();
     this.serLinesField = new List<CT_ChartLines>();
     this.secondPieSizeField = new CT_SecondPieSize();
     this.custSplitField = new List<CT_UnsignedInt>();
     this.splitPosField = new CT_Double();
     this.splitTypeField = new CT_SplitType();
     this.gapWidthField = new CT_GapAmount();
     this.dLblsField = new CT_DLbls();
     this.serField = new List<CT_PieSer>();
     this.varyColorsField = new CT_Boolean();
     this.ofPieTypeField = new CT_OfPieType();
 }