hasGlyphs.lua 579 B

1234567891011121314151617181920212223
  1. return {
  2. summary = 'Get whether the Rasterizer can rasterize a set of glyphs.',
  3. description = 'Check if the Rasterizer can rasterize a set of glyphs.',
  4. arguments = {
  5. {
  6. name = '...',
  7. type = '*',
  8. description = 'Strings (sets of characters) or numbers (character codes) to check for.'
  9. }
  10. },
  11. returns = {
  12. {
  13. name = 'hasGlyphs',
  14. type = 'boolean',
  15. description = [[
  16. true if the Rasterizer can rasterize all of the supplied characters, false otherwise.
  17. ]]
  18. }
  19. },
  20. related = {
  21. 'Rasterizer:getGlyphCount'
  22. }
  23. }