必要な数のバーコードを印刷するアプリケーションがありますが、バーコードの量がPrintDocumentのサイズよりも大きい場合、次のページにジャンプしません。
ページを追加したり、 PrintDocumentの次のページに書き込む方法を知りたいです。
PrintPreview を使用して、この Windows フォームに PrintDocument を表示しています。
必要な数のバーコードを印刷するアプリケーションがありますが、バーコードの量がPrintDocumentのサイズよりも大きい場合、次のページにジャンプしません。
ページを追加したり、 PrintDocumentの次のページに書き込む方法を知りたいです。
PrintPreview を使用して、この Windows フォームに PrintDocument を表示しています。
OnPrintPage イベントを接続すると、PrintPageEventArguments に別のページを追加する必要があるかどうかを PrintDocument に伝えることができます。
IEnumerator items;
public void StartPrint()
{
PrintDocument pd = new PrintDocument();
pd.PrintPage += new PrintPageEventHandler(this.pd_PrintPage);
items = GetEnumerator();
if (items.MoveNext())
{
pd.Print();
}
}
private void pd_PrintPage(object sender, PrintPageEventArgs ev)
{
const int neededHeight = 200;
int line =0;
// this will be called multiple times, so keep track where you are...
// do your drawings, calculating how much space you have left on one page
bool more = true;
do
{
// draw your bars for item, handle multilple columns if needed
var item = items.Current;
line++;
// in the ev.MarginBouds the width and height of this page is available
// you use that to see if a next row will fit
if ((line * neededHeight) < ev.MarginBounds.Height )
{
break;
}
more = items.MoveNext();
} while (more);
// stop if there are no more items in your Iterator
ev.HasMorePages = more;
}