// ********************************* // Message from Original Author: // // 2008 Jose Menendez Poo // Please give me credit if you use this code. It's all I ask. // Contact me for more info: menendezpoo@gmail.com // ********************************* // // Original project from http://ribbon.codeplex.com/ // Continue to support and maintain by http://officeribbon.codeplex.com/ using System.Drawing; namespace System.Windows.Forms { public interface IRibbonToolTip { /// /// Gets or Sets the ToolTip Text /// string ToolTip { get; set; } /// /// Gets or Sets the ToolTip Title /// string ToolTipTitle { get; set; } /// /// Gets or Sets the ToolTip Image /// Image ToolTipImage { get; set; } /// /// Gets or Sets the stock ToolTip Icon /// ToolTipIcon ToolTipIcon { get; set; } /// /// Occurs before a ToolTip is initially displayed. /// Use this event to change the ToolTip or Cancel it at all. /// event RibbonElementPopupEventHandler ToolTipPopUp; } }