-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathFormSelectItem.cs
More file actions
37 lines (34 loc) · 884 Bytes
/
FormSelectItem.cs
File metadata and controls
37 lines (34 loc) · 884 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// Name: FormSelectItem.cs
// Description: Dialog box for selecting object within collection
// Author: Tim Chipman
// Origination: Work performed for BuildingSmart by Constructivity.com LLC.
// Copyright: (c) 2013 BuildingSmart International Ltd.
// License: http://www.buildingsmart-tech.org/legal
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace IfcDoc
{
public partial class FormSelectItem : Form
{
public FormSelectItem()
{
InitializeComponent();
}
public string Item
{
get
{
return this.textBoxItem.Text;
}
set
{
this.textBoxItem.Text = value;
}
}
}
}