Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
245
Multi-Line GroupByRow Description
posted

I would like to modify the GroupByRow description to take up more than one line when printing.

Here is what I have tried:

 private void uGridReport_InitializeGroupByRow(object sender, InitializeGroupByRowEventArgs e)        

{            

     if (e.Row.Band.Layout.IsPrintLayout)            

          {                

               if (e.Row.ParentRow != null)                    

                    if (e.Row.Index != 0)                    

                    {                        

                           e.Row.StartsNewPrintedPage = true;                        

                           e.Row.Description = e.Row.ParentRow.Description + "\r\n" + e.Row.Description;                    

                     }

             }      

   }

Any ideas?

Parents Reply Children
No Data