getLineHeight.lua 431 B

12345678910111213141516171819
  1. return {
  2. summary = 'Get the line height of the font.',
  3. description = [[
  4. Returns the line height metric of the font, in pixels. This is how far apart lines are.
  5. ]],
  6. arguments = {},
  7. returns = {
  8. {
  9. name = 'height',
  10. type = 'number',
  11. description = 'The line height of the font, in pixels.'
  12. }
  13. },
  14. related = {
  15. 'Rasterizer:getHeight',
  16. 'Font:getLineHeight',
  17. 'Font:setLineHeight'
  18. }
  19. }