Return whether viewport is floating or not?

Is there a way to find out whether a viewport is floating or not? Pref. in Rhinoscript but…I don’t think that’s an option.

import scriptcontext as sc
views = sc.doc.Views.GetViewList(True, True)
for v in views:
    print(v.ActiveViewport.Name, v.Floating)

FloatingState.py (135 Bytes)

Thanks!