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

Parse() protected method

protected Parse ( string str, int &pos, int len ) : void
str string
pos int
len int
return void
		protected override void Parse(string str, ref int pos, int len)
		{
			base.Parse(str, ref pos, len);
			mAnnotatedBySymbols = ParserSTEP.StripListLink(str, ref pos, len);
		}
		protected override string BuildStringSTEP()

Same methods

IfcDimensionCurve::Parse ( string str ) : IfcDimensionCurve

Usage Example

Ejemplo n.º 1
0
		//internal IfcDimensionCurve(DatabaseIfc db, IfcDimensionCurve p) : base(p) { mAnnotatedBySymbols = new List<int>(p.mAnnotatedBySymbols.ToArray()); }
		internal new static IfcDimensionCurve Parse(string str) { IfcDimensionCurve d = new IfcDimensionCurve(); int pos = 0; d.Parse(str, ref pos, str.Length); return d; }