Be.Windows.Forms.HexBox.OnCopied C# (CSharp) 메소드

OnCopied() 보호된 메소드

Raises the Copied event.
protected OnCopied ( EventArgs e ) : void
e System.EventArgs An EventArgs that contains the event data.
리턴 void
        protected virtual void OnCopied(EventArgs e)
        {
            if (Copied != null)
                Copied(this, e);
        }
HexBox