getHeight.lua 314 B

123456789101112131415
  1. return {
  2. summary = 'Get the height of the font.',
  3. description = 'Returns the height metric of the font, in pixels.',
  4. arguments = {},
  5. returns = {
  6. {
  7. name = 'height',
  8. type = 'number',
  9. description = 'The height of the font, in pixels.'
  10. }
  11. },
  12. related = {
  13. 'Font:getHeight'
  14. }
  15. }