RaymondC
  • RaymondC
  • Advanced Member Topic Starter
10 years ago
I have a grid which I am populating with the FillFromRS method. The grid has grouping which triggers the AfterAutoGroupRowCreated event once for each group row.

I want to run some code after the last group row has been formatted, i.e. after the last time the AfterAutoGroupRowCreated event is called.

Is there any sort of AfterGridPopulated event?
Igor/10Tec
10 years ago
It seems, you need the AfterContentsGrouped event.

There is no special event triggered when FillFromRS has finished its work. This is a synchronous call, and you can simply do what you need after the grid has been populated with FillFromRS in the next statement.
RaymondC
  • RaymondC
  • Advanced Member Topic Starter
10 years ago
The AfterContentsGrouped event is exactly what I was looking for.

Thank you.