GeometryGym.Ifc.IfcDraughtingCallout.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 virtual void Parse(string str, ref int pos, int len) { mContents = ParserSTEP.StripListLink(str, ref pos, len); }
		protected override string BuildStringSTEP()

Same methods

IfcDraughtingCallout::Parse ( string str ) : IfcDraughtingCallout

Usage Example

Exemple #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;
		}