using System;
using System.Windows.Forms;
using SharpImage.Forms;
namespace SharpImage.Extension.Custom1
{
public partial class siFormCustom1 : siFormTool
{
///
/// Default constructor.
///
public siFormCustom1()
{
InitializeComponent();
}
///
/// Get if the filter should be run.
///
public bool RunFilter
{
get { return this.checkbox.Checked; }
}
}
}