getHeight.lua 431 B

12345678910111213141516171819202122
  1. return {
  2. summary = 'Get the height of the Image.',
  3. description = 'Returns the height of the Image, in pixels.',
  4. arguments = {},
  5. returns = {
  6. height = {
  7. type = 'number',
  8. description = 'The height of the Image, in pixels.'
  9. }
  10. },
  11. variants = {
  12. {
  13. arguments = {},
  14. returns = { 'height' }
  15. }
  16. },
  17. related = {
  18. 'Image:getWidth',
  19. 'Image:getDimensions',
  20. 'Texture:getHeight'
  21. }
  22. }