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
110
UltraWinGrid 7.3 How to programmatically add an Outlook Group By Row?
posted

Is there any way to add a column to the Outlook Group By Row in code? It is straightforward enough at design time using the designer, but I am not able to do so in code.

 

TIA!

Parents
  • 3555
    Verified Answer
    posted

    Check the following method.

    .DisplayLayout.Bands[0].SortedColumns.Add

     

    Example:

    YourDrug.DisplayLayout.Bands[0].SortedColumns.Add("ColumnName", false, true);

Reply Children