wx.PrintPageRange¶This class represents a range of pages to be printed.
Added in version 4.3/wxWidgets-3.3.0.
See also
Class Hierarchy¶
Inheritance diagram for class PrintPageRange:
Methods Summary¶Default constructor creates an uninitialized range. |
|
Return the number of pages in this range if it is valid. |
|
Return |
Properties Summary¶See |
|
A public C++ attribute of type |
|
A public C++ attribute of type |
Class API¶Possible constructors:
PrintPageRange() -> None
PrintPageRange(_from, to) -> None
This class represents a range of pages to be printed.
__init__ (self)
Default constructor creates an uninitialized range.
None
__init__ (self, _from, to)
Constructor creating a range from from to to (inclusive).
Parameters must be valid, i.e. from must be strictly positive and to must be greater or equal to from.
from (int)
to (int)
None
Return the number of pages in this range if it is valid.
int
Return True if both components are initialized correctly.
bool
See GetNumberOfPages
A public C++ attribute of type int.
A public C++ attribute of type int.