OnPaste() public static method

public static OnPaste ( InputTextField textField ) : void
textField InputTextField
return void
示例#1
0
        void DoPaste()
        {
#if UNITY_WEBPLAYER || UNITY_WEBGL || UNITY_STANDALONE_WIN || UNITY_STANDALONE_OSX || UNITY_EDITOR
            CopyPastePatch.OnPaste(this);
#else
            if (onPaste != null)
            {
                onPaste(this);
            }
#endif
        }