Example #1
0
 public static CT_PictureFormat Parse(XmlNode node, XmlNamespaceManager namespaceManager)
 {
     if (node == null)
         return null;
     CT_PictureFormat ctObj = new CT_PictureFormat();
     if (node.Attributes["val"] != null)
         ctObj.val = (ST_PictureFormat)Enum.Parse(typeof(ST_PictureFormat), node.Attributes["val"].Value);
     return ctObj;
 }
Example #2
0
 public CT_PictureOptions()
 {
     this.pictureStackUnitField = new CT_PictureStackUnit();
     this.pictureFormatField = new CT_PictureFormat();
     this.applyToEndField = new CT_Boolean();
     this.applyToSidesField = new CT_Boolean();
     this.applyToFrontField = new CT_Boolean();
 }