Inheritance: IfcGeometricRepresentationItem
示例#1
0
		internal static void parseFields(IfcDraughtingCallout c, List<string> arrFields, ref int ipos) { IfcGeometricRepresentationItem.parseFields(c, arrFields, ref ipos); c.mContents = ParserSTEP.SplitListLinks(arrFields[ipos++]); }
示例#2
0
		internal IfcDraughtingCallout(IfcDraughtingCallout el) : base(el) { mContents = new List<int>(el.mContents.ToArray()); }
示例#3
0
		internal static IfcDraughtingCallout Parse(string strDef) { IfcDraughtingCallout c = new IfcDraughtingCallout(); int ipos = 0; parseFields(c, ParserSTEP.SplitLineFields(strDef), ref ipos); return c; }
示例#4
0
		//internal IfcDraughtingCallout(IfcDraughtingCallout el) : base(el) { mContents = new List<int>(el.mContents.ToArray()); }
		internal static IfcDraughtingCallout Parse(string str)
		{
			IfcDraughtingCallout d = new IfcDraughtingCallout();
			int pos = 0;
			d.Parse(str, ref pos, str.Length);
			return d;
		}