Ejemplo n.º 1
0
 internal ClassicReportDocument(ReportModel model)
 {
     _width = model.PageWidth;
     _height = model.PageHeight;
     _name = model.DocumentName;
     _paperwidth = model.PaperWidth;
     _paperheight = model.PaperHeight;
     _cpi = model.Cpi;
 }
Ejemplo n.º 2
0
 public void Execute(string schema)
 {
     _model = new ReportModel(schema);
     Execute();
 }
 public void Clear()
 {
     _selections.Clear();
     _clipboard.Clear();
     _model.Clear();
     _model = new ReportModel();
     OnClipBoardChanged();
     Invalidate();
 }
Ejemplo n.º 4
0
 public ReportComposer(string schema)
 {
     _model = new ReportModel(schema);
 }