Beispiel #1
0
		internal static IfcTendonAnchor Parse(string strDef) { IfcTendonAnchor t = new IfcTendonAnchor(); int ipos = 0; parseFields(t, ParserSTEP.SplitLineFields(strDef), ref ipos); return t; }
Beispiel #2
0
		internal static void parseFields(IfcTendonAnchor a, List<string> arrFields, ref int ipos)
		{
			IfcReinforcingElement.parseFields(a, arrFields, ref ipos);
			string str = arrFields[ipos++];
			if (str[0] == '.')
				a.mPredefinedType = (IfcTendonAnchorTypeEnum)Enum.Parse(typeof(IfcTendonAnchorTypeEnum), str.Replace(".", ""));
		}
Beispiel #3
0
		internal IfcTendonAnchor(IfcTendonAnchor a) : base(a) { mPredefinedType = a.mPredefinedType; }