Example #1
0
 private void BaseInit(XbimColumnType xbimColumnType)
 {
     _document.Columns.Add(this);
     _ifcBuildingElement = _document.Model.Instances.New<IfcColumn>();
     _ifcBuildingElement.SetDefiningType(xbimColumnType.IfcTypeProduct, _document.Model);
 }
Example #2
0
 internal XbimColumn(XbimDocument document, XbimColumnType xbimColumnType)
     : base(document)
 {
     BaseInit(xbimColumnType);
 }