How to get the hidden-state of a worksheet ?

Questions and answers on how to use XLSReadWriteII 5.
Post Reply
LuBo
Posts: 1
Joined: Wed Feb 19, 2014 11:38 am

How to get the hidden-state of a worksheet ?

Post by LuBo »

How to get the hidden-state of a worksheet of a file just read?

with best regards
LuBo
larsa
Site Admin
Posts: 926
Joined: Mon Jun 27, 2005 9:30 pm

Re: How to get the hidden-state of a worksheet ?

Post by larsa »

Hello

Use

Code: Select all

if XLS.Manager.Workbook.Sheets[0].State = x12vHidden then
  ...

In the next update can you use:

Code: Select all

if XLS[0].Visibility = x12vHidden then
  ...
Lars Arvidsson, Axolot Data
Post Reply