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

Parse() static private méthode

static private Parse ( string str ) : IfcDraughtingCallout
str string
Résultat 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

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