[NUI] Copy, Paste & Cut Public APIs (#3450)
authorSaraMohSamara <43113185+SaraMohSamara@users.noreply.github.com>
Tue, 24 Aug 2021 10:43:39 +0000 (13:43 +0300)
committerdongsug-song <35130733+dongsug-song@users.noreply.github.com>
Fri, 27 Aug 2021 05:29:50 +0000 (14:29 +0900)
commitddbb14fb94c4044f936550480028ec77984a60ae
tree673060f4f4a4420386d4b4e16f5cdb6c0a214f01
parentb61d00d0d6c2f33f6580ea4cb2eaf6fd4309ba1d
[NUI] Copy, Paste & Cut Public APIs (#3450)

[NUI] Adding the Copy, Cut and paste public APIs to NUI.

Added:
string CopyText() //Copy and return the selected text.
- This function will copy the previously selected string into the clipboard and will return it.
string CutText() //Cut and return the selected text.
- This function will cut the previously selected string into the clipboard and will return it.
void PasteText() //Paste the most recently copied/cut text.
- This function will paste the most recent string in the clipboard stack into the text control.
src/Tizen.NUI/src/internal/Interop/Interop.TextEditor.cs
src/Tizen.NUI/src/internal/Interop/Interop.TextField.cs
src/Tizen.NUI/src/public/BaseComponents/TextUtils.cs