UnityEngine.TextEditor.Cut C# (CSharp) Метод

Cut() публичный Метод

public Cut ( ) : bool
Результат bool
        public bool Cut()
        {
            if (this.isPasswordField)
            {
                return false;
            }
            this.Copy();
            return this.DeleteSelection();
        }