Get Scale of book

Hi. Is there some way to get scale of book? For example i have attached a book with 55% of scale.excel.zip (53.0 KB)

Best regards. Alexey

@makarovalv,

Thanks for the template file.

Please try using Worksheet.setZoom() attribute for your needs, see the sample lines of code for your reference:
e.g
Sample code:

.........
Worksheet worksheet = workbook.getWorksheets().get(0);

//55% zoom

worksheet.setZoom(55);
........

Hope this helps a bit.

Thank you very much

@makarovalv,

Good to know that the suggested lines of code sorted out your issue for now. Feel free to contact us any time if you need further help or have some other issue or queries, we will be happy to assist you soon.