public CT_Styles() { this.styleField = new List<CT_Style>(); this.latentStylesField = new CT_LatentStyles(); this.docDefaultsField = new CT_DocDefaults(); }
public static CT_LatentStyles Parse(XmlNode node, XmlNamespaceManager namespaceManager) { if (node == null) return null; CT_LatentStyles ctObj = new CT_LatentStyles(); if (node.Attributes["w:defLockedState"] != null) ctObj.defLockedState = (ST_OnOff)Enum.Parse(typeof(ST_OnOff), node.Attributes["w:defLockedState"].Value); ctObj.defUIPriority = XmlHelper.ReadString(node.Attributes["w:defUIPriority"]); if (node.Attributes["w:defSemiHidden"] != null) ctObj.defSemiHidden = (ST_OnOff)Enum.Parse(typeof(ST_OnOff), node.Attributes["w:defSemiHidden"].Value); if (node.Attributes["w:defUnhideWhenUsed"] != null) ctObj.defUnhideWhenUsed = (ST_OnOff)Enum.Parse(typeof(ST_OnOff), node.Attributes["w:defUnhideWhenUsed"].Value); if (node.Attributes["w:defQFormat"] != null) ctObj.defQFormat = (ST_OnOff)Enum.Parse(typeof(ST_OnOff), node.Attributes["w:defQFormat"].Value); ctObj.count = XmlHelper.ReadString(node.Attributes["w:count"]); ctObj.lsdException = new List<CT_LsdException>(); foreach (XmlNode childNode in node.ChildNodes) { if (childNode.LocalName == "lsdException") ctObj.lsdException.Add(CT_LsdException.Parse(childNode, namespaceManager)); } return ctObj; }
public void TestLatentStyles() { CT_LatentStyles latentStyles = new CT_LatentStyles(); CT_LsdException ex = latentStyles.AddNewLsdException(); ex.name=("ex1"); XWPFLatentStyles ls = new XWPFLatentStyles(latentStyles); Assert.AreEqual(true, ls.IsLatentStyle("ex1")); }
public XWPFLatentStyles(CT_LatentStyles latentStyles, XWPFStyles styles) { this.latentStyles = latentStyles; this.styles = styles; }
public XWPFLatentStyles(CT_LatentStyles latentStyles) : this(latentStyles, null) { ; }
protected XWPFLatentStyles(CT_LatentStyles latentStyles) : this(latentStyles, null) { ; }