Get the font name from a Text plugin

ruimac

Member
I know how to set the font of a Text plugin in a container, using code.
But I can't get the font name from the Text plugin. Is there any command (System.SendCommand) that returns the font name used in a geometry?
 
Ok, got it!!!


Code:
cmd = System.SendCommand("#"&this.VizId&"*GEOM*FONT GET")
cmd = System.SendCommand(cmd&"*UUID GET")
cmd = System.SendCommand(cmd&"*NAME GET")
 
Back
Top