forked from DongwanCho/IfcDoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FormProperties.cs
41 lines (34 loc) · 1.07 KB
/
FormProperties.cs
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
38
39
40
41
// Name: FormProperties.cs
// Description: Dialog for editing documentation, templates, concepts, and exchanges.
// Author: Tim Chipman
// Origination: Work performed for BuildingSmart by Constructivity.com LLC.
// Copyright: (c) 2011 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;
using IfcDoc.Schema.DOC;
using IfcDoc.Format.PNG;
namespace IfcDoc
{
public partial class FormProperties : Form
{
public FormProperties()
{
InitializeComponent();
}
//public FormProperties(DocObject docObject, DocObject docParent, DocProject docProject) : this()
public FormProperties(DocObject[] path, DocProject docProject)
: this()
{
this.ctlProperties.Init(path, docProject);
}
private void ctlProperties_Load(object sender, EventArgs e)
{
}
}
}