Hi,
I have problem with summary column.
I am using UltraWinGrid 2006 Volume 2 CLR 2.0 in my project, and I wanted to calculate an summary of column, and fix this to last position on grid. It's possible?
Any idea? Please.
Excuse me my bad English.
To create a Summary for a column , you use the Summaries.Add method on the band. You can control the placement of the summaries using the SummaryDisplayAreas property, which I beleive is on the Override. I beleive there is an option for having fixed summaries at the bottom of the grid.
Thanks Mike!
To add an unbound column to the grid, you would use the InitializeLayout event of the grid and you the band.Columns.Add method.
You can populate this column with a calculation either by using a Formula (with UltraCalcManager) or you could do it in code using the InitializeRow event.
There is no way to fix a column to the right side of the grid - fixed columns can only be fixed on the left.