Get the show status of an object
GetShow()
True is the object is Show, False if the object is Hide
EX1
import PyOrigin #Assume a workbook contained multiple sheets is active wksPage = PyOrigin.ActivePage() nSheetIndex = 0 wks = wksPage.Layers(nSheetIndex) wks.SetShow(0) if wks.GetShow(): print('The first sheet is hide')
SetShow