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

Parse() static private method

static private Parse ( string str, ReleaseVersion schema ) : IfcWindow
str string
schema ReleaseVersion
return IfcWindow
        internal static IfcWindow Parse(string str, ReleaseVersion schema)
        {
            IfcWindow w = new IfcWindow(); int pos = 0; w.Parse(str, ref pos, str.Length, schema); return w;
        }

Same methods

IfcWindow::Parse ( string str, int &pos, int len, ReleaseVersion schema ) : void

Usage Example

Exemplo n.º 1
0
 internal static IfcWindow Parse(string str, ReleaseVersion schema)
 {
     IfcWindow w = new IfcWindow(); int pos = 0; w.Parse(str, ref pos, str.Length, schema); return(w);
 }
All Usage Examples Of GeometryGym.Ifc.IfcWindow::Parse