Home - Forums-.NET - FlyGrid.Net (Windows Forms) - Event methods changed !!!

FlyGrid.Net (Windows Forms)

.NET Datagrid - Fast, highly customizable, industry standards .NET data grid control for WinForms

This forum related to following products: FlyGrid.Net

Event methods changed !!!
Link Posted: 23-Mar-2007 03:41
Hi

Why do you change methods headers in newest version Flygrid?
Example:

new version

void NineRays.Windows.Forms.FlyGrid.ColumnMoveHandler(NineRays.Windows.Forms.Grids.Column, NineRays.Windows.Forms.Grids.Column)


old version

bool NineRays.Windows.Forms.FlyGrid.ColumnMoveHandler(NineRays.Windows.Forms.Grids.Column, NineRays.Windows.Forms.Grids.Column)



Robert[/code]
Link Posted: 23-Mar-2007 05:23
We've made handling of column moving more flexible.
You can be noticed that FlyGrid.ColumnMoving event handler:
bool RequestColumnMoveHandler(Column fromColumn, Column toColumn);

has been added.
If you need to control the process of column move - use FlyGrid.ColumnMoving event, and FlyGrid.ColumnMove for the column move notifications.