SVGExportForm.designer.cs 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. using FastReport.Controls;
  2. namespace FastReport.Forms
  3. {
  4. partial class SVGExportForm
  5. {
  6. /// <summary>
  7. /// Required designer variable.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// Clean up any resources being used.
  12. /// </summary>
  13. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region Windows Form Designer generated code
  23. /// <summary>
  24. /// Required method for Designer support - do not modify
  25. /// the contents of this method with the code editor.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.gbOptions = new System.Windows.Forms.GroupBox();
  30. this.cbToMultipleFiles = new System.Windows.Forms.CheckBox();
  31. this.lblImageFormat = new System.Windows.Forms.Label();
  32. this.cbEmbdImgs = new System.Windows.Forms.CheckBox();
  33. this.comboBox1 = new System.Windows.Forms.ComboBox();
  34. this.gbPageRange.SuspendLayout();
  35. this.pcPages.SuspendLayout();
  36. this.panPages.SuspendLayout();
  37. this.gbOptions.SuspendLayout();
  38. this.SuspendLayout();
  39. //
  40. // gbPageRange
  41. //
  42. this.gbPageRange.Location = new System.Drawing.Point(8, 4);
  43. //
  44. // pcPages
  45. //
  46. this.pcPages.Location = new System.Drawing.Point(0, 0);
  47. this.pcPages.Size = new System.Drawing.Size(276, 137);
  48. //
  49. // panPages
  50. //
  51. this.panPages.Dock = System.Windows.Forms.DockStyle.None;
  52. this.panPages.Size = new System.Drawing.Size(284, 137);
  53. //
  54. // cbOpenAfter
  55. //
  56. this.cbOpenAfter.Location = new System.Drawing.Point(9, 270);
  57. //
  58. // cbExportAllTabs
  59. //
  60. this.cbExportAllTabs.Location = new System.Drawing.Point(9, 250);
  61. //
  62. // btnOk
  63. //
  64. this.btnOk.Location = new System.Drawing.Point(112, 290);
  65. //
  66. // btnCancel
  67. //
  68. this.btnCancel.Location = new System.Drawing.Point(193, 290);
  69. this.btnCancel.TabIndex = 1;
  70. //
  71. // gbOptions
  72. //
  73. this.gbOptions.Controls.Add(this.cbToMultipleFiles);
  74. this.gbOptions.Controls.Add(this.lblImageFormat);
  75. this.gbOptions.Controls.Add(this.cbEmbdImgs);
  76. this.gbOptions.Controls.Add(this.comboBox1);
  77. this.gbOptions.Location = new System.Drawing.Point(8, 138);
  78. this.gbOptions.Name = "gbOptions";
  79. this.gbOptions.Size = new System.Drawing.Size(260, 108);
  80. this.gbOptions.TabIndex = 5;
  81. this.gbOptions.TabStop = false;
  82. this.gbOptions.Text = "Options";
  83. //
  84. // cbToMultipleFiles
  85. //
  86. this.cbToMultipleFiles.AutoSize = true;
  87. this.cbToMultipleFiles.Location = new System.Drawing.Point(12, 78);
  88. this.cbToMultipleFiles.Name = "cbToMultipleFiles";
  89. this.cbToMultipleFiles.Size = new System.Drawing.Size(132, 17);
  90. this.cbToMultipleFiles.TabIndex = 7;
  91. this.cbToMultipleFiles.Text = "Export to multiple files";
  92. this.cbToMultipleFiles.UseVisualStyleBackColor = true;
  93. //
  94. // lblImageFormat
  95. //
  96. this.lblImageFormat.AutoSize = true;
  97. this.lblImageFormat.Location = new System.Drawing.Point(12, 24);
  98. this.lblImageFormat.Name = "lblImageFormat";
  99. this.lblImageFormat.Size = new System.Drawing.Size(76, 13);
  100. this.lblImageFormat.TabIndex = 1;
  101. this.lblImageFormat.Text = "Image format:";
  102. //
  103. // cbEmbdImgs
  104. //
  105. this.cbEmbdImgs.AutoSize = true;
  106. this.cbEmbdImgs.Location = new System.Drawing.Point(12, 55);
  107. this.cbEmbdImgs.Name = "cbEmbdImgs";
  108. this.cbEmbdImgs.Size = new System.Drawing.Size(94, 17);
  109. this.cbEmbdImgs.TabIndex = 6;
  110. this.cbEmbdImgs.Text = "Embed images";
  111. this.cbEmbdImgs.UseVisualStyleBackColor = true;
  112. //
  113. // comboBox1
  114. //
  115. this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  116. this.comboBox1.FormattingEnabled = true;
  117. this.comboBox1.Items.AddRange(new object[] {
  118. "Png",
  119. "Jpeg"});
  120. this.comboBox1.Location = new System.Drawing.Point(104, 20);
  121. this.comboBox1.Name = "comboBox1";
  122. this.comboBox1.Size = new System.Drawing.Size(144, 21);
  123. this.comboBox1.TabIndex = 0;
  124. //
  125. // SVGExportForm
  126. //
  127. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  128. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  129. this.ClientSize = new System.Drawing.Size(276, 317);
  130. this.Controls.Add(this.gbOptions);
  131. this.Name = "SVGExportForm";
  132. this.OpenAfterVisible = true;
  133. this.Text = "Export to SVG";
  134. this.Controls.SetChildIndex(this.cbExportAllTabs, 0);
  135. this.Controls.SetChildIndex(this.pcPages, 0);
  136. this.Controls.SetChildIndex(this.btnCancel, 0);
  137. this.Controls.SetChildIndex(this.btnOk, 0);
  138. this.Controls.SetChildIndex(this.gbOptions, 0);
  139. this.Controls.SetChildIndex(this.cbOpenAfter, 0);
  140. this.gbPageRange.ResumeLayout(false);
  141. this.gbPageRange.PerformLayout();
  142. this.pcPages.ResumeLayout(false);
  143. this.panPages.ResumeLayout(false);
  144. this.gbOptions.ResumeLayout(false);
  145. this.gbOptions.PerformLayout();
  146. this.ResumeLayout(false);
  147. this.PerformLayout();
  148. }
  149. #endregion
  150. private System.Windows.Forms.GroupBox gbOptions;
  151. private System.Windows.Forms.ComboBox comboBox1;
  152. private System.Windows.Forms.Label lblImageFormat;
  153. private System.Windows.Forms.CheckBox cbEmbdImgs;
  154. private System.Windows.Forms.CheckBox cbToMultipleFiles;
  155. }
  156. }