Is it possible to get text font type info?

 From:  Michael Gibson
11110.4 In reply to 11110.3 
Hi Matadem, for Draw Solid > Text , if you have some of the output from Draw Solid > Text and it hasn't been modified either by moving or by booleans etc... then the font will be on a history record which you can view by selecting a letter and using this script:

var objs = moi.geometryDatabase.getSelectedObjects(); if ( objs.length != 1 ) { moi.ui.alert( 'error, just one object should be selected' ); } else { moi.ui.alert( objs.item(0).getHistoryData() ); }

But if it has been edited there isn't any way to retrieve the original font information, sorry.

- Michael