BoldSign®Effortlessly integrate e-signatures into your app with the BoldSign® API. Create a sandbox account!
this.dataGrid.CellTapped += DataGrid_CellTapped;
private void DataGrid_CellTapped(object sender, Syncfusion.UI.Xaml.Grid.GridCellTappedEventArgs e)
{
if (e.Column.MappingName == "Country")
{
string text = e.Record.GetType().GetProperty(e.Column.MappingName).GetValue(e.Record).ToString();
if (text.Length > 0)
Clipboard.SetText(text);
}
} |