상속: IfcBuildingElementType
예제 #1
0
파일: IFC C.cs 프로젝트: jenca-cloud/ggIFC
		internal new static IfcColumnType Parse(string strDef) { IfcColumnType t = new IfcColumnType(); int ipos = 0; parseFields(t, ParserSTEP.SplitLineFields(strDef), ref ipos); return t; }
예제 #2
0
파일: IFC C.cs 프로젝트: jenca-cloud/ggIFC
		internal static void parseFields(IfcColumnType t, List<string> arrFields, ref int ipos) { IfcBuildingElementType.parseFields(t,arrFields, ref ipos); t.mPredefinedType = (IfcColumnTypeEnum)Enum.Parse(typeof(IfcColumnTypeEnum), arrFields[ipos++].Replace(".", ""));  }
예제 #3
0
파일: IFC C.cs 프로젝트: jenca-cloud/ggIFC
		internal IfcColumnType(IfcColumnType t) : base(t) { mPredefinedType = t.mPredefinedType; }
예제 #4
0
 public Pset_ConcreteElementGeneral(IfcColumnType type)
     : base(type.mDatabase, "Pset_ConcreteElementGeneral")
 {
     Description = type.Name; type.AddPropertySet(this);
 }
예제 #5
0
 public Pset_ColumnCommon(IfcColumnType type)
     : base(type.mDatabase, "Pset_ColumnCommon")
 {
     Description = type.Name; type.AddPropertySet(this);
 }
예제 #6
0
 public Qto_ColumnBaseQuantities(IfcColumnType type) : base(type)
 {
 }