UnityEngine.TextEditor.Cut C# (CSharp) 메소드

Cut() 공개 메소드

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