Browse Source
git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/2.0@1527 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61shortcuts
5 changed files with 2 additions and 104 deletions
@ -1,65 +0,0 @@ |
|||||||
|
|
||||||
//
|
|
||||||
/// <remarks>
|
|
||||||
/// created by - Forstmeier Peter
|
|
||||||
/// Peter Forstmeier (Peter.Forstmeier@t-online.de)
|
|
||||||
/// created on - 12.06.2005 18:17:46
|
|
||||||
/// </remarks>
|
|
||||||
|
|
||||||
using System; |
|
||||||
/// <summary>
|
|
||||||
/// This Delegate is used to format the output from TextBased Items
|
|
||||||
/// </summary>
|
|
||||||
namespace SharpReportCore { |
|
||||||
|
|
||||||
public class FormatOutputEventArgs : System.EventArgs { |
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Default constructor - initializes all fields to default values
|
|
||||||
/// </summary>
|
|
||||||
private string format; |
|
||||||
private string valueToFormat; |
|
||||||
private string nullValue; |
|
||||||
private string formatedValue; |
|
||||||
|
|
||||||
public FormatOutputEventArgs() { |
|
||||||
} |
|
||||||
|
|
||||||
public FormatOutputEventArgs(string valueToFormat,string format, string nullValue ) |
|
||||||
{ |
|
||||||
this.format = format; |
|
||||||
this.nullValue = nullValue; |
|
||||||
this.valueToFormat = valueToFormat; |
|
||||||
} |
|
||||||
|
|
||||||
#region Property's
|
|
||||||
public string Format { |
|
||||||
get { |
|
||||||
return format; |
|
||||||
} |
|
||||||
} |
|
||||||
public string NullValue { |
|
||||||
get { |
|
||||||
return nullValue; |
|
||||||
} |
|
||||||
} |
|
||||||
public string ValueToFormat { |
|
||||||
get { |
|
||||||
return valueToFormat; |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
public string FormatedValue { |
|
||||||
get { |
|
||||||
return formatedValue; |
|
||||||
} |
|
||||||
set { |
|
||||||
formatedValue = value; |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
|
|
||||||
#endregion
|
|
||||||
|
|
||||||
} |
|
||||||
} |
|
Loading…
Reference in new issue