8 lines
148 B
C#
8 lines
148 B
C#
using System;
|
|
using System.Drawing.Printing;
|
|
|
|
namespace GoldPrinter
|
|
{
|
|
public delegate void PrintPageDelegate(object obj, PrintPageEventArgs ev);
|
|
}
|