ImageGlass.ImageBox.OnGridScaleChanged C# (CSharp) Method

OnGridScaleChanged() protected method

Raises the GridScaleChanged event.
protected OnGridScaleChanged ( EventArgs e ) : void
e System.EventArgs /// The instance containing the event data. ///
return void
        protected virtual void OnGridScaleChanged(EventArgs e)
        {
            EventHandler handler;

            InitializeGridTile();

            handler = GridScaleChanged;

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