10 changed files with 76 additions and 24 deletions
@ -0,0 +1,30 @@
@@ -0,0 +1,30 @@
|
||||
/* |
||||
* Created by SharpDevelop. |
||||
* User: Peter Forstmeier |
||||
* Date: 05.02.2014 |
||||
* Time: 20:33 |
||||
* |
||||
* To change this template use Tools | Options | Coding | Edit Standard Headers. |
||||
*/ |
||||
using System; |
||||
using ICSharpCode.Reporting.Interfaces; |
||||
|
||||
namespace ICSharpCode.Reporting |
||||
{ |
||||
/// <summary>
|
||||
/// Description of SectionEvent.
|
||||
/// </summary>
|
||||
public class SectionEventArgs : EventArgs |
||||
{ |
||||
|
||||
|
||||
public SectionEventArgs(IReportContainer section){ |
||||
if (section == null) |
||||
throw new ArgumentNullException("section"); |
||||
Section = section; |
||||
} |
||||
|
||||
public IReportContainer Section {get;private set;} |
||||
|
||||
} |
||||
} |
Loading…
Reference in new issue