GeometryGym.Ifc.IfcDraughtingCallout.Parse C# (CSharp) Method

Parse() static private method

static private Parse ( string str ) : IfcDraughtingCallout
str string
return IfcDraughtingCallout
		internal static IfcDraughtingCallout Parse(string str)
		{
			IfcDraughtingCallout d = new IfcDraughtingCallout();
			int pos = 0;
			d.Parse(str, ref pos, str.Length);
			return d;
		}
		protected virtual void Parse(string str, ref int pos, int len) { mContents = ParserSTEP.StripListLink(str, ref pos, len); }

Same methods

IfcDraughtingCallout::Parse ( string str, int &pos, int len ) : void

Usage Example

Ejemplo n.º 1
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;
		}