List of all loaded Grasshopper documents?

How to get the list of all loaded Grasshopper documents?

image

import System
import Grasshopper

menu = Grasshopper.Instances.DocumentEditor.Controls[4].Items[6]

print menu.ToolTipText

try this:

A = Grasshopper.Instances.DocumentServer.DocumentNames;

Thanks Naruto