~halega/+junk/sharpdevelop

« back to all changes in this revision

Viewing changes to src/AddIns/Misc/Reports/ICSharpCode.Reports.Core/Project/Interfaces/IStringBasedEditorDialog.cs

  • Committer: sk
  • Date: 2011-09-10 05:17:57 UTC
  • Revision ID: halega@halega.com-20110910051757-qfouz1llya9m6boy
4.1.0.7915 Release Candidate 1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Erstellt mit SharpDevelop.
 
3
 * Benutzer: Forstmeier
 
4
 * Datum: 09.04.2007
 
5
 * Zeit: 17:01
 
6
 * 
 
7
 * Sie können diese Vorlage unter Extras > Optionen > Codeerstellung > Standardheader ändern.
 
8
 */
 
9
 
 
10
using System;
 
11
using System.Windows.Forms;
 
12
 
 
13
namespace ICSharpCode.Reports.Core.Interfaces
 
14
{
 
15
        /// <summary>
 
16
        /// Description of EditorDialog.
 
17
        /// </summary>
 
18
        /// 
 
19
        public interface IStringBasedEditorDialog
 
20
        {
 
21
                DialogResult ShowDialog();
 
22
                string TextValue {get;}
 
23
        }
 
24
}