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; }
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(); }