コード例 #1
0
 /// <summary>
 /// To raise the <see cref="Syncfusion.UI.Xaml.TreeGrid.SfTreeGrid.GridPasteOption"/> event in SfTreeGrid.
 /// </summary>
 /// <param name="column">
 /// The corresponding column of the cell content.
 /// </param>
 /// <param name="rowData">
 /// The corresponding row data of the cell content.
 /// </param>
 /// <param name="clipboardValue">
 /// The corresponding clipboard value that is going to be pasted.
 /// </param>
 /// Returns the <see cref="Syncfusion.UI.Xaml.TreeGrid.TreeGridCopyPasteCellEventArgs"/>.
 /// </returns>
 protected virtual TreeGridCopyPasteCellEventArgs RaisePasteGridCellContentEvent(TreeGridColumn column, object rowData, object clipboardValue)
 {
     return(TreeGrid.RaisePasteTreeGridCellContentEvent(new TreeGridCopyPasteCellEventArgs(false, column, this.TreeGrid, rowData, clipboardValue)));
 }