GeometryGym.Ifc.IfcDraughtingCalloutRelationship.BuildStringSTEP C# (CSharp) 메소드

BuildStringSTEP() 보호된 메소드

protected BuildStringSTEP ( ) : string
리턴 string
		protected override string BuildStringSTEP() { return base.BuildStringSTEP() + "," + mName + "," + mDescription + "," + ParserSTEP.LinkToString(mRelatingDraughtingCallout) + "," + ParserSTEP.LinkToString(mRelatedDraughtingCallout); }
		internal static IfcDraughtingCalloutRelationship Parse(string strDef) { IfcDraughtingCalloutRelationship r = new IfcDraughtingCalloutRelationship(); int ipos = 0; parseFields(r, ParserSTEP.SplitLineFields(strDef), ref ipos); return r; }