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

Parse() static private méthode

static private Parse ( string str ) : IfcLightSourceDirectional
str string
Résultat IfcLightSourceDirectional
        internal static IfcLightSourceDirectional Parse(string str)
        {
            IfcLightSourceDirectional l = new IfcLightSourceDirectional(); int pos = 0; l.Parse(str, ref pos, str.Length); return l;
        }

Same methods

IfcLightSourceDirectional::Parse ( string str, int &pos, int len ) : void

Usage Example

 //internal IfcLightSourceDirectional(IfcLightSourceDirectional el) : base((IfcLightSource)el) { mOrientation = el.mOrientation; }
 internal static IfcLightSourceDirectional Parse(string str)
 {
     IfcLightSourceDirectional l = new IfcLightSourceDirectional(); int pos = 0; l.Parse(str, ref pos, str.Length); return(l);
 }
All Usage Examples Of GeometryGym.Ifc.IfcLightSourceDirectional::Parse