wpf webview htmlページスプリッター
wpf で eReader アプリケーションを実行しています。html コンテンツをページとして表示する必要があります。次のスタイルを使用すると、html コンテンツを webkitBrowsers の列に分割できます。
"var jsPagenate = "function a() {"
+ "var d = document.getElementsByTagName('html')[0];"
+ "var ourH = window.innerHeight; "
+ "var ourW = window.innerWidth; " + "var fullH = this.clientHeight; "
+ "var pageCount = Math.floor(fullH/ourH)+1;"
+ "var currentPage = 0; " + "var newW = pageCount*ourW; "
+ "d.style.height = ourH+'px';" + "d.style.width = newW+'px';"
+ "d.style.webkitColumnGap = '0px'; " + "d.style.margin = 0; "
+ "d.style.webkitColumnCount = pageCount;}";"
しかし、wpf webbrowsers では動作しません。
IE で実装するにはどうすればよいですか?