// // (C) Copyright 2003-2023 by Autodesk, Inc. // // Permission to use, copy, modify, and distribute this software in // object code form for any purpose and without fee is hereby granted, // provided that the above copyright notice appears in all copies and // that both that copyright notice and the limited warranty and // restricted rights notice below appear in all supporting // documentation. // // AUTODESK PROVIDES THIS PROGRAM "AS IS" AND WITH ALL FAULTS. // AUTODESK SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTY OF // MERCHANTABILITY OR FITNESS FOR A PARTICULAR USE. AUTODESK, INC. // DOES NOT WARRANT THAT THE OPERATION OF THE PROGRAM WILL BE // UNINTERRUPTED OR ERROR FREE. // // Use, duplication, or disclosure by the U.S. Government is subject to // restrictions set forth in FAR 52.227-19 (Commercial Computer // Software - Restricted Rights) and DFAR 252.227-7013(c)(1)(ii) // (Rights in Technical Data and Computer Software), as applicable. // namespace Revit.SDK.Samples.DisallowEndWrapping.CS { partial class WallInformationForm { /// /// 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.wrappingInfoBox = new System.Windows.Forms.GroupBox(); this.locationsView = new System.Windows.Forms.ListView(); this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeader5 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeader6 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.label1 = new System.Windows.Forms.Label(); this.textBox1 = new System.Windows.Forms.TextBox(); this.button1 = new System.Windows.Forms.Button(); this.button0 = new System.Windows.Forms.Button(); this.groupBox1 = new System.Windows.Forms.GroupBox(); this.wrappingInfoBox.SuspendLayout(); this.groupBox1.SuspendLayout(); this.SuspendLayout(); // // wrappingInfoBox // this.wrappingInfoBox.Controls.Add(this.locationsView); this.wrappingInfoBox.Location = new System.Drawing.Point(12, 12); this.wrappingInfoBox.Name = "wrappingInfoBox"; this.wrappingInfoBox.Size = new System.Drawing.Size(464, 246); this.wrappingInfoBox.TabIndex = 8; this.wrappingInfoBox.TabStop = false; this.wrappingInfoBox.Text = "End wrapping information"; // // locationsView // this.locationsView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.columnHeader1, this.columnHeader4, this.columnHeader5, this.columnHeader6}); this.locationsView.FullRowSelect = true; this.locationsView.GridLines = true; this.locationsView.HideSelection = false; this.locationsView.Location = new System.Drawing.Point(6, 19); this.locationsView.MultiSelect = false; this.locationsView.Name = "locationsView"; this.locationsView.Size = new System.Drawing.Size(447, 215); this.locationsView.Sorting = System.Windows.Forms.SortOrder.Ascending; this.locationsView.TabIndex = 5; this.locationsView.UseCompatibleStateImageBehavior = false; this.locationsView.View = System.Windows.Forms.View.Details; // // columnHeader1 // this.columnHeader1.Text = "Location"; this.columnHeader1.Width = 80; // // columnHeader4 // this.columnHeader4.Text = "end wrapping allowed"; this.columnHeader4.Width = 120; // // columnHeader5 // this.columnHeader5.Text = "parameter on curve"; this.columnHeader5.Width = 120; // // columnHeader6 // this.columnHeader6.Text = "face tags"; this.columnHeader6.Width = 120; // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(6, 31); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(51, 13); this.label1.TabIndex = 13; this.label1.Text = "Location:"; // // textBox1 // this.textBox1.Location = new System.Drawing.Point(9, 63); this.textBox1.Name = "textBox1"; this.textBox1.Size = new System.Drawing.Size(100, 20); this.textBox1.TabIndex = 12; // // button1 // this.button1.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.button1.Location = new System.Drawing.Point(9, 209); this.button1.Name = "button1"; this.button1.Size = new System.Drawing.Size(100, 25); this.button1.TabIndex = 11; this.button1.Text = "&Disallow wrapping"; this.button1.UseVisualStyleBackColor = true; this.button1.Click += new System.EventHandler(this.button1_Click); // // button0 // this.button0.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.button0.Location = new System.Drawing.Point(9, 163); this.button0.Name = "button0"; this.button0.Size = new System.Drawing.Size(100, 25); this.button0.TabIndex = 10; this.button0.Text = "&Allow wrapping"; this.button0.UseVisualStyleBackColor = true; this.button0.Click += new System.EventHandler(this.button0_Click); // // groupBox1 // this.groupBox1.Controls.Add(this.label1); this.groupBox1.Controls.Add(this.textBox1); this.groupBox1.Controls.Add(this.button0); this.groupBox1.Controls.Add(this.button1); this.groupBox1.Location = new System.Drawing.Point(502, 12); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(129, 246); this.groupBox1.TabIndex = 9; this.groupBox1.TabStop = false; this.groupBox1.Text = "Change end wrapping"; // // WallInformationForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(649, 266); this.Controls.Add(this.groupBox1); this.Controls.Add(this.wrappingInfoBox); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "WallInformationForm"; this.ShowInTaskbar = false; this.Text = "Wall end wrapping information"; this.wrappingInfoBox.ResumeLayout(false); this.groupBox1.ResumeLayout(false); this.groupBox1.PerformLayout(); this.ResumeLayout(false); } #endregion private System.Windows.Forms.GroupBox wrappingInfoBox; private System.Windows.Forms.ListView locationsView; private System.Windows.Forms.ColumnHeader columnHeader1; private System.Windows.Forms.ColumnHeader columnHeader4; private System.Windows.Forms.ColumnHeader columnHeader5; private System.Windows.Forms.ColumnHeader columnHeader6; private System.Windows.Forms.Label label1; private System.Windows.Forms.TextBox textBox1; private System.Windows.Forms.Button button1; private System.Windows.Forms.Button button0; private System.Windows.Forms.GroupBox groupBox1; } }