コード例 #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;
        }