Table Control Events Demo

This sample allows you to display an event log that will show the order of the various TableControl events.

Features:

TableControl Events screenshot

Here is the code to hook up an event:

                this.groupingEngine.CategorizedRecords+=new GroupEventHandler(groupingEngine_CategorizedRecords);  

Here is the code to unhook the event:

                this.groupingEngine.CategorizedRecords -=new GroupEventHandler(groupingEngine_CategorizedRecords);  

Here is the code to add an event handler:

                private void groupingEngine_CategorizedRecords(object sender, GroupEventArgs e)
                {
                        AppendOutput("CategorizedRecords",e);
                }