I want to implement "Copy to Clipboard" functionality as below
1: copy current cell value
2: Copy selected row/s
3: copy selected column/s
4: copy current row (even though someother row/s is/are selected)
Last two items (3 and 4) in the above list are tricky as "Column Selection" is not allowed.
Hello Bnmerch,
Maybe one possible approach to achieve this behavior is to use method ultraGrid1.PerformAction(UltraGridAction. Copy); Also you could set properties:
ultraGrid1.DisplayLayout.Override.AllowMultiCellOperations = AllowMultiCellOperation.All;
ultraGrid1.DisplayLayout.Override.SelectTypeCell = SelectType.Extended;
ultraGrid1.DisplayLayout.Override.SelectTypeRow = SelectType.Extended;
Please take a look at the attached sample for more details. Please let me know if you have any questions.
Regards