PgContext.getMirrorChar

If @ch has the Unicode mirrored property and there is another Unicode character that typically has a glyph that is the mirror image of @ch's glyph, puts that character in the address pointed to by @mirrored_ch.

Use g_unichar_get_mirror_char() instead; the docs for that function provide full details.

class PgContext
static
bool
getMirrorChar
(
dchar ch
,
dchar* mirroredCh
)

Parameters

ch dchar

a Unicode character

mirroredCh dchar*

location to store the mirrored character

Return Value

Type: bool

%TRUE if @ch has a mirrored character and @mirrored_ch is filled in, %FALSE otherwise

Meta