GeometryGym.Ifc.IfcLightSourceDirectional.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); mOrientation = ParserSTEP.StripLink(str, ref pos, len);
        }

Same methods

IfcLightSourceDirectional::Parse ( string str ) : IfcLightSourceDirectional

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