Esempio n. 1
0
 public CT_MarkerStyle AddNewSymbol()
 {
     this.symbolField = new CT_MarkerStyle();
     return this.symbolField;
 }
Esempio n. 2
0
 public static CT_MarkerStyle Parse(XmlNode node, XmlNamespaceManager namespaceManager)
 {
     if (node == null)
         return null;
     CT_MarkerStyle ctObj = new CT_MarkerStyle();
     if (node.Attributes["val"] != null)
         ctObj.val = (ST_MarkerStyle)Enum.Parse(typeof(ST_MarkerStyle), node.Attributes["val"].Value);
     return ctObj;
 }
Esempio n. 3
0
 public CT_Marker()
 {
     this.extLstField = new List<CT_Extension>();
     this.sizeField = new CT_MarkerSize();
     this.symbolField = new CT_MarkerStyle();
 }