GeometryGym.Ifc.IfcExtendedMaterialProperties.BuildStringSTEP C# (CSharp) Method

BuildStringSTEP() protected method

protected BuildStringSTEP ( ) : string
return string
		protected override string BuildStringSTEP()
		{
			string str = base.BuildStringSTEP() + ",(" + ParserSTEP.LinkToString(mExtendedProperties[0]);
			for (int icounter = 1; icounter < mExtendedProperties.Count; icounter++)
				str += "," + ParserSTEP.LinkToString(mExtendedProperties[icounter]);
			return str + ")" + "," + mDescription + "," + mName;
		}
	}