BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
this.gridDataBoundGrid1.Model.ClipboardCanCopy += new GridCutPasteEventHandler(Model_ClipboardCanCopy); private void Model_ClipboardCanCopy(object sender, GridCutPasteEventArgs e) { int colIndex = this.gridDataBoundGrid1.Binder.NameToColIndex("passwordCOL"); if(this.gridDataBoundGrid1.Selections.Ranges.AnyRangeIntersects(GridRangeInfo.Col(colIndex))) { e.Handled = true; e.Result = false; } }