I have a gridView in a winform. I have set one of the column "Note" to:
wraptext= true
multiline= true
This is my print button:
despite the above, the result I get, see picture attached, is not the expected one.The multilines field doesn't shows properly the content. Part of the text is out of the visible box.
I have tried with several printers but the problem is always the same.
What I can do to solve this problem?
wraptext= true
multiline= true
This is my print button:
private void BtnPrint(object sender, EventArgs e)
{
GridPrintStyle style = new GridPrintStyle();
style.FitWidthMode = PrintFitWidthMode.FitPageWidth;
style.PrintHeaderOnEachPage = true;
this.radGridView1.PrintStyle = style;
this.radGridView1.PrintPreview();
}
I have tried with several printers but the problem is always the same.
What I can do to solve this problem?