GeometryGym.Ifc.IfcExtrudedAreaSolidTapered.Parse C# (CSharp) Méthode

Parse() protected méthode

protected Parse ( string str, int &pos, int len ) : void
str string
pos int
len int
Résultat void
		protected override void Parse(string str, ref int pos, int len)
		{
			base.Parse(str, ref pos, len);
			mEndSweptArea = ParserSTEP.StripLink(str, ref pos, len);
		}
		protected override string BuildStringSTEP() { return base.BuildStringSTEP() + "," + ParserSTEP.LinkToString(mEndSweptArea); }

Same methods

IfcExtrudedAreaSolidTapered::Parse ( string str ) : IfcExtrudedAreaSolidTapered

Usage Example

Exemple #1
0
		internal new static IfcExtrudedAreaSolidTapered Parse(string str) { IfcExtrudedAreaSolidTapered e = new IfcExtrudedAreaSolidTapered(); int pos = 0; e.Parse(str, ref pos, str.Length); return e; }