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
220
How to Get Column Summary
posted

Sir,

  How to get the Summary value of a column from the UltraWinGrid and Show it in a Text Box.

 Can anyone help me to do this....

Thanks

R.Vasanth

Parents
  • 469350
    Verified Answer
    Offline posted

     Hi,

        The summary settings on the column doesn't have a value, because the calculated value is based on the rows. For example, a summary settings on a child band would have multiple values (one for each parent row). And the same holds true for a root-level summary if you are using OutlookGroupBy to group the rows.

        So to get the value of a summary, you have to get it from the rows collection. In a simply case, if you just have a flat grid and no grouping, you would do something like this: 

         this.ultraGrid1.Rows.SummaryValues["My Summary"].Value

         

Reply Children