BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
this.gridGroupingControl1.TableControl.MouseMove
Exactly what are you trying to do? There may be a better place to do it.
private void gridGroupingControl1_QueryCellStyleInfo(object sender, GridTableCellStyleInfoEventArgs e) { if(e.TableCellIdentity.TableCellType == GridTableCellType.RecordFieldCell || e.TableCellIdentity.TableCellType == GridTableCellType.AlternateRecordFieldCell) { GridRecordRow grr = e.TableCellIdentity.DisplayElement as GridRecordRow; if(grr != null) { e.Style.CellTipText = grr.ParentRecord.GetValue("Description").ToString(); } } //or just setting e.Style.CellTipText = e.TableCellIdentity.Info is informative as well }
e.Style.CellTipText = ???????
based on whatever criteria youwant. This can vary from cell to cell or even moment to moment based on what logic you implement. The e.TableCellIdentity has lots of information about the cell/record that allow you to implement logic to conditionally set the CellTipText.