44ffb47dedde22a60ddd6861cad6d3928ea95baa
[mono.git] / mcs / class / System.Design / System.Web.UI.Design / IWebFormsBuilderUIService.cs
1 //
2 // System.Web.UI.Design.IWebFormsBuilderUIService
3 //
4 // Authors:
5 //      Gert Driesen (drieseng@users.sourceforge.net)
6 //
7 // (C) 2004 Novell
8 //
9
10 using System.Windows.Forms;
11
12 namespace System.Web.UI.Design
13 {
14         public interface IWebFormsBuilderUIService
15         {
16                 string BuildColor (System.Windows.Forms.Control owner, string initialColor);
17                 string BuildUrl (System.Windows.Forms.Control owner, string initialUrl, string baseUrl, string caption, string filter, UrlBuilderOptions options);
18         }
19 }