예제 #1
0
파일: HxXML.cs 프로젝트: xwcs/xwcs.trediws
        public void setXslString(string xslString)
        {
            if (this.xslt == null)
                this.xslt = new Xsl();
            this.xslt.xslString = xslString;
	    }
예제 #2
0
파일: HxXML.cs 프로젝트: xwcs/xwcs.trediws
	    public void setXslFile(string xslFile)
        {
            if(this.xslt == null)
                this.xslt = new Xsl();
            this.xslt.xslLink = xslFile;
        }