namespace PdfiumViewer.Demo { partial class PrintMultiplePagesForm { /// /// 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 Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.label1 = new System.Windows.Forms.Label(); this._horizontal = new System.Windows.Forms.TextBox(); this.label2 = new System.Windows.Forms.Label(); this._vertical = new System.Windows.Forms.TextBox(); this.label3 = new System.Windows.Forms.Label(); this._margin = new System.Windows.Forms.TextBox(); this.groupBox1 = new System.Windows.Forms.GroupBox(); this._horizontalOrientation = new System.Windows.Forms.RadioButton(); this._verticalOrientation = new System.Windows.Forms.RadioButton(); this._acceptButton = new System.Windows.Forms.Button(); this._cancelButton = new System.Windows.Forms.Button(); this.groupBox1.SuspendLayout(); this.SuspendLayout(); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(12, 15); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(57, 13); this.label1.TabIndex = 0; this.label1.Text = "Horizontal:"; // // _horizontal // this._horizontal.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this._horizontal.Location = new System.Drawing.Point(86, 12); this._horizontal.Name = "_horizontal"; this._horizontal.Size = new System.Drawing.Size(308, 20); this._horizontal.TabIndex = 1; this._horizontal.Text = "2"; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(12, 41); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(45, 13); this.label2.TabIndex = 2; this.label2.Text = "Vertical:"; // // _vertical // this._vertical.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this._vertical.Location = new System.Drawing.Point(86, 38); this._vertical.Name = "_vertical"; this._vertical.Size = new System.Drawing.Size(308, 20); this._vertical.TabIndex = 3; this._vertical.Text = "2"; // // label3 // this.label3.AutoSize = true; this.label3.Location = new System.Drawing.Point(12, 67); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(42, 13); this.label3.TabIndex = 4; this.label3.Text = "Margin:"; // // _margin // this._margin.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this._margin.Location = new System.Drawing.Point(86, 64); this._margin.Name = "_margin"; this._margin.Size = new System.Drawing.Size(308, 20); this._margin.TabIndex = 5; this._margin.Text = "5"; // // groupBox1 // this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.groupBox1.Controls.Add(this._verticalOrientation); this.groupBox1.Controls.Add(this._horizontalOrientation); this.groupBox1.Location = new System.Drawing.Point(86, 90); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(308, 70); this.groupBox1.TabIndex = 6; this.groupBox1.TabStop = false; this.groupBox1.Text = "Orientation"; // // _horizontalOrientation // this._horizontalOrientation.AutoSize = true; this._horizontalOrientation.Checked = true; this._horizontalOrientation.Location = new System.Drawing.Point(13, 20); this._horizontalOrientation.Name = "_horizontalOrientation"; this._horizontalOrientation.Size = new System.Drawing.Size(72, 17); this._horizontalOrientation.TabIndex = 0; this._horizontalOrientation.TabStop = true; this._horizontalOrientation.Text = "Horizontal"; this._horizontalOrientation.UseVisualStyleBackColor = true; // // _verticalOrientation // this._verticalOrientation.AutoSize = true; this._verticalOrientation.Location = new System.Drawing.Point(13, 43); this._verticalOrientation.Name = "_verticalOrientation"; this._verticalOrientation.Size = new System.Drawing.Size(60, 17); this._verticalOrientation.TabIndex = 1; this._verticalOrientation.Text = "Vertical"; this._verticalOrientation.UseVisualStyleBackColor = true; // // _acceptButton // this._acceptButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this._acceptButton.Location = new System.Drawing.Point(238, 172); this._acceptButton.Name = "_acceptButton"; this._acceptButton.Size = new System.Drawing.Size(75, 23); this._acceptButton.TabIndex = 7; this._acceptButton.Text = "Print"; this._acceptButton.UseVisualStyleBackColor = true; this._acceptButton.Click += new System.EventHandler(this._acceptButton_Click); // // _cancelButton // this._cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this._cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel; this._cancelButton.Location = new System.Drawing.Point(319, 172); this._cancelButton.Name = "_cancelButton"; this._cancelButton.Size = new System.Drawing.Size(75, 23); this._cancelButton.TabIndex = 8; this._cancelButton.Text = "Cancel"; this._cancelButton.UseVisualStyleBackColor = true; // // PrintMultiplePagesForm // this.AcceptButton = this._acceptButton; this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.CancelButton = this._cancelButton; this.ClientSize = new System.Drawing.Size(406, 207); this.Controls.Add(this._cancelButton); this.Controls.Add(this._acceptButton); this.Controls.Add(this.groupBox1); this.Controls.Add(this._margin); this.Controls.Add(this._vertical); this.Controls.Add(this._horizontal); this.Controls.Add(this.label3); this.Controls.Add(this.label2); this.Controls.Add(this.label1); this.Name = "PrintMultiplePagesForm"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "Print Multiple Pages"; this.groupBox1.ResumeLayout(false); this.groupBox1.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label label1; private System.Windows.Forms.TextBox _horizontal; private System.Windows.Forms.Label label2; private System.Windows.Forms.TextBox _vertical; private System.Windows.Forms.Label label3; private System.Windows.Forms.TextBox _margin; private System.Windows.Forms.GroupBox groupBox1; private System.Windows.Forms.RadioButton _verticalOrientation; private System.Windows.Forms.RadioButton _horizontalOrientation; private System.Windows.Forms.Button _acceptButton; private System.Windows.Forms.Button _cancelButton; } }