58 lines
675 B
C#
58 lines
675 B
C#
using System;
|
|
using System.Drawing.Printing;
|
|
|
|
namespace GoldPrinter
|
|
{
|
|
public class WebPrinterPageSetting : IPrinterPageSetting
|
|
{
|
|
public event PrintPageDelegate PrintPage;
|
|
|
|
public PrintDocument PrintDocument
|
|
{
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
set
|
|
{
|
|
}
|
|
}
|
|
|
|
public PrintPageDelegate PrintPageValue
|
|
{
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
set
|
|
{
|
|
}
|
|
}
|
|
|
|
public ImportExcelDelegate ImportExcelValue
|
|
{
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
set
|
|
{
|
|
}
|
|
}
|
|
|
|
public PageSettings ShowPageSetupDialog()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public PrinterSettings ShowPrintSetupDialog()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public void ShowPrintPreviewDialog()
|
|
{
|
|
}
|
|
}
|
|
}
|