상속: IfcBuildingElement
예제 #1
0
 public Qto_SpaceBaseQuantities(IfcFooting instance) : base(instance)
 {
 }
예제 #2
0
 internal static IfcFooting Parse(string str)
 {
     IfcFooting f = new IfcFooting(); int pos = 0; f.Parse(str, ref pos, str.Length); return f;
 }
예제 #3
0
 public Qto_FootingBaseQuantities(IfcFooting instance) : base(instance.mDatabase, "Qto_FootingBaseQuantities")
 {
     Description = instance.Name; DefinesOccurrence.Assign(instance);
 }
예제 #4
0
 public Qto_FootingBaseQuantities(IfcFooting instance)
     : base(instance.mDatabase, "Qto_FootingBaseQuantities")
 {
     Description = instance.Name; DefinesOccurrence.Assign(instance);
 }
예제 #5
0
 internal IfcFooting(DatabaseIfc db, IfcFooting f)
     : base(db,f)
 {
     mPredefinedType = f.mPredefinedType;
 }
예제 #6
0
 public Pset_ConcreteElementGeneral(IfcFooting instance)
     : base(instance.mDatabase, "Pset_ConcreteElementGeneral")
 {
     Description = instance.Name; DefinesOccurrence.Assign(instance);
 }
예제 #7
0
파일: IFC F.cs 프로젝트: jenca-cloud/ggIFC
		internal static void parseFields(IfcFooting f, List<string> arrFields, ref int ipos)
		{
			IfcBuildingElement.parseFields(f, arrFields, ref ipos);
			string str = arrFields[ipos++];
			if (str[0] == '.')
				f.mPredefinedType = (IfcFootingTypeEnum)Enum.Parse(typeof(IfcFootingTypeEnum), str.Substring(1, str.Length - 2));
		}
예제 #8
0
파일: IFC F.cs 프로젝트: jenca-cloud/ggIFC
		internal static IfcFooting Parse(string strDef) { IfcFooting f = new IfcFooting(); int ipos = 0; parseFields(f, ParserSTEP.SplitLineFields(strDef), ref ipos); return f; }
예제 #9
0
파일: IFC F.cs 프로젝트: jenca-cloud/ggIFC
		internal IfcFooting(IfcFooting b) : base(b) { mPredefinedType = b.mPredefinedType; }
예제 #10
0
 internal IfcFooting(DatabaseIfc db, IfcFooting f, DuplicateOptions options) : base(db, f, options)
 {
     mPredefinedType = f.mPredefinedType;
 }