getWidth.lua 426 B

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