using System.ComponentModel;
using System.Drawing;
namespace DevComponents.DotNetBar.Charts.Style
{
    /// 
    /// Represents the visual style of a Legend element.
    /// 
    [TypeConverter(typeof(VisualStylesConverter))]
    public class DividerLineVisualStyle : ChartLineVisualStyle
    {
        #region ApplyStyle
        /// 
        /// Applies the style to the instance of this style.
        /// 
        /// Style to apply.
        public void ApplyStyle(DividerLineVisualStyle style)
        {
            if (style != null)
                base.ApplyStyle(style);
        }
        #endregion
        #region Copy
        /// 
        /// Returns the copy of the style.
        /// 
        /// Copy of the style.
        public new DividerLineVisualStyle Copy()
        {
            DividerLineVisualStyle style = new DividerLineVisualStyle();
            CopyTo(style);
            return (style);
        }
        #endregion
        #region CopyTo
        /// 
        /// Returns the copy of the style.
        /// 
        /// Copy of the style.
        public void CopyTo(DividerLineVisualStyle style)
        {
            base.CopyTo(style);
        }
        #endregion
    }
}