Example #1
0
 private void BaseInit(XbimWindowStyle type)
 {
     _document.Windows.Add(this);
     _ifcBuildingElement = _document.Model.Instances.New<IfcWindow>();
     _ifcBuildingElement.SetDefiningType(type.IfcTypeProduct, _document.Model);
 }
Example #2
0
 internal XbimWindow(XbimDocument document, XbimWindowStyle type)
     : base(document)
 {
     BaseInit(type);
 }