Beispiel #1
0
 /// <summary>
 /// Adds a system handle to this wrapper.
 /// </summary>
 /// <param name="element">The element.</param>
 /// <param name="handle">The building handle.</param>
 public void AddSystem(Element element, IFCAnyHandle handle)
 {
     RegisterHandleWithElement(element, handle);
     CreatedHandles.Add(handle);
 }
Beispiel #2
0
 public void AddProject(Element element, IFCAnyHandle handle)
 {
     CreatedHandles.Add(handle);
 }
Beispiel #3
0
 /// <summary>
 /// Add a generic element to the wrapper, and create associated internal property sets if option is set.
 /// </summary>
 /// <param name="element">The element.</param>
 /// <param name="handle">The handle.</param>
 public void AddElement(Element element, IFCAnyHandle handle, IFCExportInfoPair exportType)
 {
     CreatedHandles.Add(handle);
     RegisterHandleWithElement(element, handle, exportType);
 }