PrintDocument.Paginate Evento

Definición

Se produce cuando printManager solicita que la colección de páginas de impresión se muestre en la ventana de vista previa.

public:
 virtual event PaginateEventHandler ^ Paginate;
// Register
event_token Paginate(PaginateEventHandler const& handler) const;

// Revoke with event_token
void Paginate(event_token const* cookie) const;

// Revoke with event_revoker
PrintDocument::Paginate_revoker Paginate(auto_revoke_t, PaginateEventHandler const& handler) const;
public event PaginateEventHandler Paginate;
function onPaginate(eventArgs) { /* Your code */ }
printDocument.addEventListener("paginate", onPaginate);
printDocument.removeEventListener("paginate", onPaginate);
- or -
printDocument.onpaginate = onPaginate;
Public Custom Event Paginate As PaginateEventHandler 

Tipo de evento

Se aplica a

Consulte también