Home - Forums-.NET - FlyGrid.Net (Windows Forms) - How To Get This Effect?

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

How To Get This Effect?
Link Posted: 30-Oct-2006 22:23
If I double-click in a plain old Column with some text in the cell, that  is selected (so that if, for example, I hit the delete key, all the text would be deleted).

How can I do this programmatically?
Link Posted: 01-Nov-2006 01:09
[c#]
private void InitFlyGrid(FlyGrid flyGrid)
{
  //initialization code...
  //....
  flyGrid.NodeDblClick += new NodeClickHandler(flyGrid_NodeDblClick);
}

private void flyGrid_NodeDblClick(object sender, NodeBase node, Column col)
{
  node[col] = string.Empty;
}