Esempio n. 1
0
 public static CT_ErrValType Parse(XmlNode node, XmlNamespaceManager namespaceManager)
 {
     if (node == null)
         return null;
     CT_ErrValType ctObj = new CT_ErrValType();
     if (node.Attributes["val"] != null)
         ctObj.val = (ST_ErrValType)Enum.Parse(typeof(ST_ErrValType), node.Attributes["val"].Value);
     return ctObj;
 }
Esempio n. 2
0
 public CT_ErrBars()
 {
     this.extLstField = new List<CT_Extension>();
     this.valField = new CT_Double();
     this.minusField = new CT_NumDataSource();
     this.plusField = new CT_NumDataSource();
     this.noEndCapField = new CT_Boolean();
     this.errValTypeField = new CT_ErrValType();
     this.errBarTypeField = new CT_ErrBarType();
     this.errDirField = new CT_ErrDir();
 }