Esempio n. 1
0
 void BaseValues()
 {
     this.useStandardPrinter  = true;
     this.graphicsUnit        = GraphicsUnit.Pixel;
     this.padding             = new Padding(5);
     this.defaultFont         = GlobalValues.DefaultFont;
     this.reportType          = GlobalEnums.ReportType.FormSheet;
     this.dataModel           = GlobalEnums.PushPullModel.FormSheet;
     this.pageSize            = GlobalValues.DefaultPageSize;
     this.topMargin           = GlobalValues.DefaultPageMargin.Left;
     this.bottomMargin        = GlobalValues.DefaultPageMargin.Bottom;
     this.leftMargin          = GlobalValues.DefaultPageMargin.Left;
     this.rightMargin         = GlobalValues.DefaultPageMargin.Right;
     this.availableFields     = new AvailableFieldsCollection();
     this.groupingsCollection = new ColumnCollection();
     this.sortingCollection   = new SortColumnCollection();
     this.parameterCollection = new ParameterCollection();
 }
		void BaseValues()
		{
			this.useStandardPrinter = true;
			this.graphicsUnit = GraphicsUnit.Pixel;
			this.padding = new Padding(5);
			this.defaultFont = GlobalValues.DefaultFont;
			this.reportType = GlobalEnums.ReportType.FormSheet;
			this.dataModel = GlobalEnums.PushPullModel.FormSheet;
			this.pageSize = GlobalValues.DefaultPageSize;
			this.topMargin = GlobalValues.DefaultPageMargin.Left;
			this.bottomMargin = GlobalValues.DefaultPageMargin.Bottom;
			this.leftMargin = GlobalValues.DefaultPageMargin.Left;
			this.rightMargin = GlobalValues.DefaultPageMargin.Right;
			this.availableFields = new AvailableFieldsCollection();
			this.groupingsCollection = new ColumnCollection();
			this.sortingCollection = new SortColumnCollection();
			this.parameterCollection = new ParameterCollection();
		}