Example #1
0
 public void AddNewStyleSheet()
 {
     this.stylesheet = new CT_Stylesheet();
 }
Example #2
0
 public StyleSheetDocument(CT_Stylesheet stylesheet)
 {
     this.stylesheet = stylesheet;
 }
Example #3
0
        public static StyleSheetDocument Parse(XDocument xmldoc, XmlNamespaceManager namespaceManager)
        {
            CT_Stylesheet obj = CT_Stylesheet.Parse(xmldoc.Document.Root, namespaceManager);

            return(new StyleSheetDocument(obj));
        }
Example #4
0
 public StyleSheetDocument()
 {
     this.stylesheet = new CT_Stylesheet();
 }