GeometryGym.Ifc.IfcAdvancedBrepWithVoids.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);
			mVoids = ParserSTEP.StripListLink(str, ref pos, len);
		}
		protected override string BuildStringSTEP()

Same methods

IfcAdvancedBrepWithVoids::Parse ( string str ) : IfcAdvancedBrepWithVoids

Usage Example

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