Files
Groupware/Sub/YARTE/Buttons/IHTMLEditorButton.cs
2024-01-22 09:26:20 +09:00

18 lines
578 B
C#

using System.Drawing;
using System.Windows.Forms;
namespace YARTE.UI.Buttons
{
public interface IHTMLEditorButton : IButton
{
void IconClicked(ButtonArgs doc);
Image IconImage { get; }
/// <summary>
/// This is the string that will be used to poll the text area to determine if the cursor
/// is in a given area (say, 'Bold') and show the corresponding button as selected
/// Leave blank if there is no command or you have no idea what to put here
/// </summary>
string CommandIdentifier { get; }
}
}