Inheritance: GeometryGym.Ifc.IfcSimpleProperty
示例#1
0
		internal static void parseFields(IfcPropertyEnumeratedValue p, List<string> arrFields, ref int ipos) { IfcSimpleProperty.parseFields(p, arrFields, ref ipos); string str = arrFields[ipos++]; p.mEnumerationValues = str; p.mEnumerationReference = ParserSTEP.ParseLink(arrFields[ipos++]); }
示例#2
0
		internal static IfcPropertyEnumeratedValue Parse(string strDef) { IfcPropertyEnumeratedValue p = new IfcPropertyEnumeratedValue(); int ipos = 0; parseFields(p, ParserSTEP.SplitLineFields(strDef), ref ipos); return p; }
示例#3
0
		internal int mEnumerationReference;// : OPTIONAL IfcPropertyEnumeration;   

		internal IfcPropertyEnumeratedValue(IfcPropertyEnumeratedValue q) : base(q) { mEnumerationValues = q.mEnumerationValues; /*mEnumerationValues = new List<string>( q.mEnumerationValues.ToArray());*/ mEnumerationReference = q.mEnumerationReference; }