System.Windows.Forms.HexBox.OnSelectionLengthChanged C# (CSharp) 메소드

OnSelectionLengthChanged() 보호된 메소드

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