using System;
using System.Text;
using System.Drawing;
namespace DevComponents.DotNetBar
{
    /// 
    /// Provides data for the Navigation Pane rendering events.
    /// 
    public class NavPaneRenderEventArgs : EventArgs
    {
        /// 
        /// Gets or sets Graphics object group is rendered on.
        /// 
        public Graphics Graphics = null;
        /// 
        /// Gets or sets the rendering bounds.
        /// 
        public Rectangle Bounds = Rectangle.Empty;
        /// 
        /// Creates new instance of the objects and initializes it with default values.
        /// 
        public NavPaneRenderEventArgs(Graphics g, Rectangle bounds)
        {
            this.Graphics = g;
            this.Bounds = bounds;
        }
    }
}