Get glyphs ID number from font List view

Hi community,

I wonder how can I get, through python scripting, the ID value that appears in the Font list view.

Thanks,

Nicolás

glyph.glyphId()

Thanks Georg, I couldn’t find that method in GSGlyph

It is not documented, yet.

1 Like

You can look into what the dir() method returns on a class name, e.g., print dir(GSGlyph), and you’ll see all everything the class can do.

Thanks @mekkablue