Select hidden details

Hello, I’m trying to figure out a way to select a hidden detail and make it visible again.
I’ve used GetDetailViews to collect visible details in each layout so that I can hide them, but the Method doesn’t seem to work on hidden details. What do I need to do to be able to select hidden details?

Thanks

Hello - do you mean the detail view itself as an object, is hidden?

import rhinoscriptsyntax as rs


def test():
    
    ids = rs.ObjectsByType(32768)
    if not ids:return
    
    for id in ids:
        if rs.IsObjectHidden(id):
            print id
test()

?
-Pascal

Yep Thats what I Needed Thanks!