Answers for "copy to clipboard unbity"

C#
0

copy to clipboard unbity

//Add this to any class and just set it with clipboard = "text";
 
 internal static string Clipboard {
   get
   {
     TextEditor _textEditor = new TextEditor();
     _textEditor.Paste();
     return _textEditor.text;
   }
   set
   {
     TextEditor _textEditor = new TextEditor
     {text = value};

     _textEditor.OnFocus();
     _textEditor.Copy();
   }
}
Posted by: Guest on April-07-2020

C# Answers by Framework

Browse Popular Code Answers by Language