IPrintable
Interface
Represents an interface for printable objects.
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.UI.dll
Syntax:
C#
public interface IPrintable
Derived Classes:
Methods
Called when the printing begins.
C#
int BeginPrint(RadPrintDocument sender, PrintEventArgs args)
The that has initiated the printing.
The event args.
Returns:The number of pages.
Called when the printing ends.
C#
bool EndPrint(RadPrintDocument sender, PrintEventArgs args)
The that has initiated the printing.
The event args.
Returns:[false] if cancel
Gets a print settings dialog that is specific for the printable object.
C#
Form GetSettingsDialog(RadPrintDocument document)
The that has initiated the printing.
The dialog.
Prints the page with the specified number.
C#
bool PrintPage(int pageNumber, RadPrintDocument sender, PrintPageEventArgs args)
The number of the current page.
senderRadPrintDocumentThe that has initiated the printing.
The event args.
Returns:[true] if there are more pages, [false] otherwise