/* i-net software provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This programming example assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. i-net software support professionals can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific needs. © i-net software 1998-2013 */ namespace Inet.Viewer.WinForms { partial class ReportView { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Component Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.splitContainer1 = new System.Windows.Forms.SplitContainer(); this.groupTreeView = new Inet.Viewer.WinForms.GroupTreeView(); this.splitContainer1.Panel1.SuspendLayout(); this.splitContainer1.SuspendLayout(); this.SuspendLayout(); // // splitContainer1 // this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill; this.splitContainer1.Location = new System.Drawing.Point(0, 0); this.splitContainer1.Name = "splitContainer1"; // // splitContainer1.Panel1 // this.splitContainer1.Panel1.Controls.Add(this.groupTreeView); this.splitContainer1.Panel1Collapsed = true; this.splitContainer1.Size = new System.Drawing.Size(754, 515); this.splitContainer1.SplitterDistance = 150; this.splitContainer1.TabIndex = 0; // // groupTreeView // this.groupTreeView.Dock = System.Windows.Forms.DockStyle.Fill; this.groupTreeView.Location = new System.Drawing.Point(0, 0); this.groupTreeView.Name = "groupTreeView"; this.groupTreeView.ReportView = null; this.groupTreeView.ReportViewer = null; this.groupTreeView.Size = new System.Drawing.Size(150, 100); this.groupTreeView.SplitContainer = this.splitContainer1; this.groupTreeView.TabIndex = 9; // // ReportView // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Controls.Add(this.splitContainer1); this.Name = "ReportView"; this.Size = new System.Drawing.Size(754, 515); this.splitContainer1.Panel1.ResumeLayout(false); this.splitContainer1.ResumeLayout(false); this.ResumeLayout(false); } #endregion private System.Windows.Forms.SplitContainer splitContainer1; /// /// Reference to the GroupTreeView /// public GroupTreeView groupTreeView; } }