bool MorePagesToPrint=false;
int i=0;
float yLineTop = e.MarginBounds.Top;
while (i < 70)
{
else
{
e.Graphics.DrawString("TEST: " + i, myFont, Brushes.Black, new PointF(e.MarginBounds.Left, yLineTop));
int j=0;
while (j < 70)
{
e.Graphics.DrawString("SUBTEST: " + j, myFont, Brushes.Black, new PointF(e.MarginBounds.Left, yLineTop));
//
yLineTop += lineHeight;
j++;
}
yLineTop += lineHeight;
i++;
}
}
Can you answer this question?
Write Answer2 Answers