fyiReporting.RdlDesign.RdlEditPreview.InitializeComponent C# (CSharp) Method

InitializeComponent() private method

Required method for Designer support - do not modify the contents of this method with the code editor.
private InitializeComponent ( ) : void
return void
        private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RdlEditPreview));
            this.tcEHP = new System.Windows.Forms.TabControl();
            this.tpDesign = new System.Windows.Forms.TabPage();
            this.tpEditor = new System.Windows.Forms.TabPage();
            this.scintilla1 = new ScintillaNET.Scintilla();
            this.tpBrowser = new System.Windows.Forms.TabPage();
            this.rdlPreview = new fyiReporting.RdlViewer.RdlViewer();
            this.tcEHP.SuspendLayout();
            this.tpEditor.SuspendLayout();
            this.tpBrowser.SuspendLayout();
            this.SuspendLayout();
            //
            // tcEHP
            //
            resources.ApplyResources(this.tcEHP, "tcEHP");
            this.tcEHP.Controls.Add(this.tpDesign);
            this.tcEHP.Controls.Add(this.tpEditor);
            this.tcEHP.Controls.Add(this.tpBrowser);
            this.tcEHP.Name = "tcEHP";
            this.tcEHP.SelectedIndex = 0;
            this.tcEHP.SelectedIndexChanged += new System.EventHandler(this.tcEHP_SelectedIndexChanged);
            //
            // tpDesign
            //
            resources.ApplyResources(this.tpDesign, "tpDesign");
            this.tpDesign.Name = "tpDesign";
            this.tpDesign.Tag = "design";
            //
            // tpEditor
            //
            this.tpEditor.Controls.Add(this.scintilla1);
            resources.ApplyResources(this.tpEditor, "tpEditor");
            this.tpEditor.Name = "tpEditor";
            this.tpEditor.Tag = "edit";
            //
            // scintilla1
            //
            resources.ApplyResources(this.scintilla1, "scintilla1");
            this.scintilla1.Lexer = ScintillaNET.Lexer.Xml;
            this.scintilla1.Name = "scintilla1";
            this.scintilla1.UseTabs = false;
            this.scintilla1.UpdateUI += new System.EventHandler<ScintillaNET.UpdateUIEventArgs>(this.scintilla1_UpdateUI);
            this.scintilla1.TextChanged += new System.EventHandler(this.scintilla1_TextChanged);
            //
            // tpBrowser
            //
            this.tpBrowser.Controls.Add(this.rdlPreview);
            resources.ApplyResources(this.tpBrowser, "tpBrowser");
            this.tpBrowser.Name = "tpBrowser";
            this.tpBrowser.Tag = "preview";
            //
            // rdlPreview
            //
            this.rdlPreview.Cursor = System.Windows.Forms.Cursors.Default;
            resources.ApplyResources(this.rdlPreview, "rdlPreview");
            this.rdlPreview.dSubReportGetContent = null;
            this.rdlPreview.Folder = null;
            this.rdlPreview.HighlightAll = false;
            this.rdlPreview.HighlightAllColor = System.Drawing.Color.Fuchsia;
            this.rdlPreview.HighlightCaseSensitive = false;
            this.rdlPreview.HighlightItemColor = System.Drawing.Color.Aqua;
            this.rdlPreview.HighlightPageItem = null;
            this.rdlPreview.HighlightText = null;
            this.rdlPreview.Name = "rdlPreview";
            this.rdlPreview.PageCurrent = 1;
            this.rdlPreview.Parameters = "";
            this.rdlPreview.ReportName = null;
            this.rdlPreview.ScrollMode = fyiReporting.RdlViewer.ScrollModeEnum.Continuous;
            this.rdlPreview.SelectTool = false;
            this.rdlPreview.ShowFindPanel = false;
            this.rdlPreview.ShowParameterPanel = true;
            this.rdlPreview.ShowWaitDialog = true;
            this.rdlPreview.SourceFile = null;
            this.rdlPreview.SourceRdl = null;
            this.rdlPreview.UseTrueMargins = true;
            this.rdlPreview.Zoom = 0.5495112F;
            this.rdlPreview.ZoomMode = fyiReporting.RdlViewer.ZoomEnum.FitWidth;
            //
            // RdlEditPreview
            //
            this.Controls.Add(this.tcEHP);
            this.Name = "RdlEditPreview";
            resources.ApplyResources(this, "$this");
            this.tcEHP.ResumeLayout(false);
            this.tpEditor.ResumeLayout(false);
            this.tpBrowser.ResumeLayout(false);
            this.ResumeLayout(false);
        }