Poppler.LayersIter¶
Fields¶
None
Methods¶
class |
|
|
|
|
|
|
|
|
|
|
|
|
Details¶
- class Poppler.LayersIter¶
- classmethod new(document)¶
- Parameters:
document (
Poppler.Document
) – aPoppler.Document
- Return type:
New in version 0.12.
- copy()¶
- Returns:
a new
Poppler.LayersIter
- Return type:
Creates a new
Poppler.LayersIter
as a copy of self. This must be freed withPoppler.LayersIter.free
().
- free()¶
Frees self.
New in version 0.12.
- get_child()¶
- Returns:
a new
Poppler.LayersIter
, orNone
- Return type:
Returns a newly created child of self, or
None
if the iter has no child. SeePoppler.LayersIter.new
() for more information on this function.New in version 0.12.
- get_layer()¶
- Returns:
a new
Poppler.Layer
, orNone
if there isn’t any layer associated with self- Return type:
Returns the
Poppler.Layer
associated with self.New in version 0.12.
- get_title()¶
- Returns:
a new string containing the self's title or
None
if self doesn’t have a title. The returned string should be freed withGLib.free
() when no longer needed.- Return type:
Returns the title associated with self. It must be freed with
GLib.free
().New in version 0.12.
- next()¶
-
Sets self to point to the next action at the current level, if valid. See
Poppler.LayersIter.new
() for more information.New in version 0.12.