Printing a C1MultiDocument File
C1MultiDocument can be printed using any of the Print and PrintDialog methods overloads. For example, the following code opens a Print dialog box.
Me.C1MultiDocument1.PrintDialog()
• C#
this.c1MultiDocument1.PrintDialog();
If you include the above code in a button's Click event handler, the Print dialog box will appear when the button is clicked at run time.
|