Modifier and Type | Method and Description |
---|---|
TextGlyph |
TextGlyph.cloneObject()
Creates and returns a deep copy of this
TextGlyph . |
TextGlyph |
Layout.createTextGlyph()
Creates a
TextGlyph object, adds it to the end of the text glyph
objects list and returns a pointer to the newly created object. |
TextGlyph |
ListOfTextGlyphs.get(long n)
Get a
TextGlyph from the ListOfTextGlyphs . |
TextGlyph |
ListOfTextGlyphs.get(String sid)
Get a
TextGlyph from the ListOfTextGlyphs
based on its identifier. |
TextGlyph |
Layout.getTextGlyph(long index)
Returns the text glyph with the given index.
|
TextGlyph |
Layout.getTextGlyph(String id)
Returns the text glyph that has the given
id , or null if no text glyph
has the id. |
TextGlyph |
ListOfTextGlyphs.remove(long n)
Removes the nth item from this
ListOfTextGlyphs items and returns a pointer to
it. |
TextGlyph |
ListOfTextGlyphs.remove(String sid)
Removes item in this
ListOfTextGlyphs items with the given identifier. |
TextGlyph |
Layout.removeTextGlyph(long index)
Removes the text glyph with the given index from the layout.
|
TextGlyph |
Layout.removeTextGlyph(String id)
Remove the text glyph with the given
id . |
Modifier and Type | Method and Description |
---|---|
void |
Layout.addTextGlyph(TextGlyph glyph)
Adds a new text glyph.
|
Constructor and Description |
---|
TextGlyph(TextGlyph source)
Copy constructor.
|