ImageGlass.ImageBox.OnVirtualDraw C# (CSharp) Method

OnVirtualDraw() protected method

Raises the VirtualDraw event.
protected OnVirtualDraw ( PaintEventArgs e ) : void
e PaintEventArgs /// The instance containing the event data. ///
return void
        protected virtual void OnVirtualDraw(PaintEventArgs e)
        {
            PaintEventHandler handler;

            handler = VirtualDraw;

            if (handler != null)
            {
                handler(this, e);
            }
        }
ImageBox