Set the show status of an object
SetShow(Show)
True is the object Show, False is the object Hide
None
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')
GetShow