GeometryGym.Ifc.IfcDuctSegment.Parse C# (CSharp) 메소드

Parse() 정적인 개인적인 메소드

static private Parse ( string strDef ) : IfcDuctSegment
strDef string
리턴 IfcDuctSegment
		internal new static IfcDuctSegment Parse(string strDef) { IfcDuctSegment s = new IfcDuctSegment(); int ipos = 0; parseFields(s, ParserSTEP.SplitLineFields(strDef), ref ipos); return s; }
		protected override string BuildStringSTEP() { return base.BuildStringSTEP() + (mDatabase.mRelease == ReleaseVersion.IFC2x3 ? "" : (mPredefinedType == IfcDuctSegmentTypeEnum.NOTDEFINED ? ",$" : ",." + mPredefinedType.ToString() + ".")); }