internal new static IfcPresentationLayerWithStyle Parse(string str) { IfcPresentationLayerWithStyle s = new IfcPresentationLayerWithStyle(); int pos = 0; IfcPresentationLayerAssignment.parseString(s, str, ref pos); s.mLayerOn = ParserIfc.StripLogical(str, ref pos); s.mLayerFrozen = ParserIfc.StripLogical(str, ref pos); s.mLayerBlocked = ParserIfc.StripLogical(str, ref pos); s.mLayerStyles = ParserSTEP.StripListLink(str, ref pos); return s; }
internal IfcPresentationLayerWithStyle(IfcPresentationLayerWithStyle o) : base(o) { mLayerOn = o.mLayerOn; mLayerFrozen = o.mLayerFrozen; mLayerBlocked = o.mLayerBlocked; mLayerStyles = new List<int>(o.mLayerStyles.ToArray()); }