Font
can display a specified String
. For strings with Unicode encoding, it is important to know if a particular font can display the string. This method returns an offset into the String
str
which is the first character this Font
cannot display without using the missing glyph code. If the Font
can display all characters, -1 is returned.
@param str a String
object
@return an offset into str
that pointsto the first character in str
that this Font
cannot display; or -1
if this Font
can display all characters in str
.
@since 1.2
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|