Hide a markupList

I want to hide a markup, just like close the eye in the “DATA module”. I searched in this forum and the wiki but found nothing, excemple the wrong code.
F = getNode(“F”)
F.SetVisibility(False)

I test some and just found a fiducials setting, while it seems like not my goal.
F = getNode(“F”)
F.SetNthFiducialVisibility(0,0)
If I want hide a Node such as a fiducialList, which codes I should write?
Thanks.

Display properties are stored in display node(s) associated with the fiducial node. See examples in the script repository.

1 Like

Thank you very much.