{{newin (日本語)|[[0.9.0 (日本語)|0.9.0]]|090|type=関数}}
Gets whether the Font can render a character or string.
== 関数 ==
=== 概要 ===
<source lang="lua">
hasglyphs = Font:hasGlyphs( text )
</source>
=== 引数 ===
{{param (日本語)|string|text|A UTF-8 encoded unicode string.}}
=== 返値 ===
{{param (日本語)|boolean|hasglyph|Whether the font can render all the UTF-8 characters in the string.}}

== 関数 ==
=== 概要 ===
<source lang="lua">
hasglyphs = Font:hasGlyphs( character1, character2, ... )
</source>
=== 引数 ===
{{param (日本語)|string|character1|A unicode character.}}
{{param (日本語)|string|character2|Another unicode character.}}
=== 返値 ===
{{param (日本語)|boolean|hasglyph|Whether the font can render all the glyphs represented by the characters.}}

== 関数 ==
=== 概要 ===
<source lang="lua">
hasglyphs = Font:hasGlyphs( codepoint1, codepoint2, ... )
</source>
=== 引数 ===
{{param (日本語)|number|codepoint1|A unicode codepoint number.}}
{{param (日本語)|number|codepoint2|Another unicode codepoint number.}}
=== 返値 ===
{{param (日本語)|boolean|hasglyph|Whether the font can render all the glyphs represented by the codepoint numbers.}}
== 関連 ==
* [[parent::Font (日本語)]]
[[Category:Functions (日本語)]]
{{#set:Description=Gets whether the Font can render a character or string.}}
== そのほかの言語 ==
{{i18n (日本語)|Font:hasGlyphs}}