getLineHeight.lua 364 B

12345678910111213141516
  1. return {
  2. summary = 'Get the line height of the Font.',
  3. description = 'Returns the current line height multiplier of the Font. The default is 1.0.',
  4. arguments = {},
  5. returns = {
  6. {
  7. name = 'lineHeight',
  8. type = 'number',
  9. description = 'The line height.'
  10. }
  11. },
  12. related = {
  13. 'Font:getHeight',
  14. 'Rasterizer:getLineHeight'
  15. }
  16. }