Set the Label visible
SetLabelVisible(LabelType, Show = True)
wks=PyOrigin.WorksheetPages('Book1').Layers(0) #test if comments label visable if wks.GetLabelVisible(2)==1: print("The comments label is visable") else: print("The comments label is invisable") wks.SetLabelVisible(2,1) print("The comments label is visable")
Worksheet-GetLabelVisible