Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
jaymerry
Creator
Creator

Test if an object is minimized with a macro

Hello all,

Do you know how can I test if an object is minimized (test with a macro) ?

Thanks for your help,

Best regards,

Jaymerry

1 Solution

Accepted Solutions
pat_agen
Specialist
Specialist


hi,

try this

set y=Activedocument.GetSheetObject("Warning")

if y.IsMinimized then

     y.Restore

end if

View solution in original post

2 Replies
pat_agen
Specialist
Specialist


hi,

try this

set y=Activedocument.GetSheetObject("Warning")

if y.IsMinimized then

     y.Restore

end if

jaymerry
Creator
Creator
Author

Hi,

Great it works,

Thanks for your help !

Best regards,

Jaymerry