Hi,
how to remove blank page. i found script in this forum but error for IPicture object.
please advice. thank you.
Hi,
how to remove blank page. i found script in this forum but error for IPicture object.
please advice. thank you.
0人中0人がこの記事が役に立ったと言っています
コメント
4件のコメント
Hi Sakinah,
In FineReader Engine 12, you may use IsEmpty Method of the FRPage Object to detect, whether the page is empty. Code sample
for (int i = 0; i < document.Pages.Count; i++) { FREngine.FRPage page = document.Pages[i]; if (page.IsEmpty()) { document.Pages.DeleteAt(i); i--; } }Hi Nadezhda,
I use FR Engine 10. no IsEmpty method for FRPage object.
Please advice. Thank you
Hi Sakinah,
IsEmpty method is a new feature of FREngine 11. We should recommend an update. I apologize for the inconvenience.
ok noted.
Thank you for your reply.
サインインしてコメントを残してください。