Class Cairo.TextCluster

Description

Holds information about a single text cluster. A text cluster is a minimal mapping of some glyphs corresponding to some UTF-8 text.

For a cluster to be valid, both num_bytes and num_glyphs should be non-negative, and at least one should be non-zero. Note that clusters with zero glyphs are not as well supported as normal clusters. For example, PDF rendering applications typically ignore those clusters when PDF text is being selected.

See Context->show_text_glyphs() for how clusters are used in advanced text operations.


Variable num_bytes

int Cairo.TextCluster.num_bytes

Description

the number of bytes of UTF-8 text covered by cluster


Variable num_glyphs

int Cairo.TextCluster.num_glyphs

Description

the number of glyphs covered by cluster


Method create

Cairo.TextCluster Cairo.TextCluster(int num_bytes, int num_glyphs)

Parameter num_bytes

the number of bytes of UTF-8 text covered by cluster

Parameter num_glyphs

the number of glyphs covered by cluster