Buckets:
kuklev9797/revit-ckpts / assets /samples /Samples /CreateWallsUnderBeams /CS /CreateWallsUnderBeamsForm.Designer.cs
| // | |
| // (C) Copyright 2003-2019 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.CreateWallsUnderBeams.CS | |
| { | |
| partial class CreateWallsUnderBeamsForm | |
| { | |
| /// <summary> | |
| /// Required designer variable. | |
| /// </summary> | |
| private System.ComponentModel.IContainer components = null; | |
| /// <summary> | |
| /// Clean up any resources being used. | |
| /// </summary> | |
| /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> | |
| protected override void Dispose(bool disposing) | |
| { | |
| if (disposing && (components != null)) | |
| { | |
| components.Dispose(); | |
| } | |
| base.Dispose(disposing); | |
| } | |
| /// <summary> | |
| /// Required method for Designer support - do not modify | |
| /// the contents of this method with the code editor. | |
| /// </summary> | |
| private void InitializeComponent() | |
| { | |
| this.optionGroupBox = new System.Windows.Forms.GroupBox(); | |
| this.structualCheckBox = new System.Windows.Forms.CheckBox(); | |
| this.wallTypeLabel = new System.Windows.Forms.Label(); | |
| this.wallTypeComboBox = new System.Windows.Forms.ComboBox(); | |
| this.OKButton = new System.Windows.Forms.Button(); | |
| this.cancelButton = new System.Windows.Forms.Button(); | |
| this.optionGroupBox.SuspendLayout(); | |
| this.SuspendLayout(); | |
| // | |
| // optionGroupBox | |
| // | |
| this.optionGroupBox.Controls.Add(this.structualCheckBox); | |
| this.optionGroupBox.Controls.Add(this.wallTypeLabel); | |
| this.optionGroupBox.Controls.Add(this.wallTypeComboBox); | |
| this.optionGroupBox.Location = new System.Drawing.Point(12, 25); | |
| this.optionGroupBox.Name = "optionGroupBox"; | |
| this.optionGroupBox.Size = new System.Drawing.Size(268, 100); | |
| this.optionGroupBox.TabIndex = 0; | |
| this.optionGroupBox.TabStop = false; | |
| this.optionGroupBox.Text = "Create Option"; | |
| // | |
| // structualCheckBox | |
| // | |
| this.structualCheckBox.AutoSize = true; | |
| this.structualCheckBox.Location = new System.Drawing.Point(17, 65); | |
| this.structualCheckBox.Name = "structualCheckBox"; | |
| this.structualCheckBox.Size = new System.Drawing.Size(92, 17); | |
| this.structualCheckBox.TabIndex = 2; | |
| this.structualCheckBox.Text = "Structual Wall"; | |
| this.structualCheckBox.UseVisualStyleBackColor = true; | |
| // | |
| // wallTypeLabel | |
| // | |
| this.wallTypeLabel.AutoSize = true; | |
| this.wallTypeLabel.Location = new System.Drawing.Point(14, 32); | |
| this.wallTypeLabel.Name = "wallTypeLabel"; | |
| this.wallTypeLabel.Size = new System.Drawing.Size(58, 13); | |
| this.wallTypeLabel.TabIndex = 0; | |
| this.wallTypeLabel.Text = "Wall Type:"; | |
| // | |
| // wallTypeComboBox | |
| // | |
| this.wallTypeComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; | |
| this.wallTypeComboBox.FormattingEnabled = true; | |
| this.wallTypeComboBox.Location = new System.Drawing.Point(78, 29); | |
| this.wallTypeComboBox.Name = "wallTypeComboBox"; | |
| this.wallTypeComboBox.Size = new System.Drawing.Size(184, 21); | |
| this.wallTypeComboBox.TabIndex = 1; | |
| // | |
| // OKButton | |
| // | |
| this.OKButton.DialogResult = System.Windows.Forms.DialogResult.OK; | |
| this.OKButton.Location = new System.Drawing.Point(50, 159); | |
| this.OKButton.Name = "OKButton"; | |
| this.OKButton.Size = new System.Drawing.Size(57, 25); | |
| this.OKButton.TabIndex = 1; | |
| this.OKButton.Text = "&OK"; | |
| this.OKButton.UseVisualStyleBackColor = true; | |
| this.OKButton.Click += new System.EventHandler(this.OKButton_Click); | |
| // | |
| // cancelButton | |
| // | |
| this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel; | |
| this.cancelButton.Location = new System.Drawing.Point(179, 159); | |
| this.cancelButton.Name = "cancelButton"; | |
| this.cancelButton.Size = new System.Drawing.Size(57, 25); | |
| this.cancelButton.TabIndex = 2; | |
| this.cancelButton.Text = "&Cancel"; | |
| this.cancelButton.UseVisualStyleBackColor = true; | |
| // | |
| // CreateWallsUnderBeamsForm | |
| // | |
| this.AcceptButton = this.OKButton; | |
| 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(292, 212); | |
| this.Controls.Add(this.cancelButton); | |
| this.Controls.Add(this.OKButton); | |
| this.Controls.Add(this.optionGroupBox); | |
| this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; | |
| this.MaximizeBox = false; | |
| this.MinimizeBox = false; | |
| this.Name = "CreateWallsUnderBeamsForm"; | |
| this.ShowInTaskbar = false; | |
| this.Text = "Create Walls Under Beams"; | |
| this.Load += new System.EventHandler(this.CreateWallsUnderBeamsForm_Load); | |
| this.optionGroupBox.ResumeLayout(false); | |
| this.optionGroupBox.PerformLayout(); | |
| this.ResumeLayout(false); | |
| } | |
| private System.Windows.Forms.GroupBox optionGroupBox; | |
| private System.Windows.Forms.CheckBox structualCheckBox; | |
| private System.Windows.Forms.Label wallTypeLabel; | |
| private System.Windows.Forms.ComboBox wallTypeComboBox; | |
| private System.Windows.Forms.Button OKButton; | |
| private System.Windows.Forms.Button cancelButton; | |
| } | |
| } |
Xet Storage Details
- Size:
- 7.03 kB
- Xet hash:
- a1f627e0da874d462631401c167ae6203ae02ae2cf7ad9937802dfcc625d6f1c
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.