UnityEngine.TextEditor.Cut C# (CSharp) Method

Cut() public method

public Cut ( ) : bool
return bool
        public bool Cut()
        {
            if (this.isPasswordField)
            {
                return false;
            }
            this.Copy();
            return this.DeleteSelection();
        }