max_items property

max_items property

The maximum number of messages or items to render.

Mail storage data files can be large and retrieving all messages can take significant time. This property limits the maximum number of messages or items that are rendered. Default value is 0 – all messages are rendered.

For a code example, see the documentation.

Definition:

@property
def max_items(self):
    ...
@max_items.setter
def max_items(self, value):
    ...

See Also