I have an Ultragrid which display things with backcolor depending on situation...
When I try to print, in the print preview, I got this (which is the same I got if I do print)...
So, question is simple : What should I do in order to get the same result as what I see when "consulting" the grid as normal...
Hi Nicloas,
It looks like you intended to post an image with your post, but I don't see the image. To attach an image file, go to the Options tab while posting and just attach the image as a file.
Ok
In the screenshot "composition", First picture is the grid being used in my application... with a Style and the
color treatment...
private void EtatGrid_InitializeRow(object sender, Infragistics.Win.UltraWinGrid.InitializeRowEventArgs e) { if(e.Row.Cells["Process"].Value.ToString() != "OK") { e.Row.Appearance.AlphaLevel = 200; e.Row.Appearance.BackColorAlpha = Infragistics.Win.Alpha.Opaque; e.Row.Appearance.BackColor = Color.Red; } }
Second image is what I get when exporting for printing... As you can see, the red lines persists but not the backcolor...
Any logical explanations ?
thanks