public override void Parse(int propIndex, IPropertyValue value, int[] nestedIndex)
        {
            switch (propIndex)
            {
            case 0:
                _symbol = (IfcAnnotationSymbolOccurrence)(value.EntityVal);
                return;

            default:
                throw new XbimParserException(string.Format("Attribute index {0} is out of range for {1}", propIndex + 1, GetType().Name.ToUpper()));
            }
        }
        public override void IfcParse(int propIndex, XbimExtensions.Interfaces.IPropertyValue value)
        {
            switch (propIndex)
            {
            case 0:
                _symbol = (IfcAnnotationSymbolOccurrence)value.EntityVal;
                break;

            default:
                this.HandleUnexpectedAttribute(propIndex, value); break;
            }
        }
 public IfcFillAreaStyleTileSymbolWithStyle(IfcAnnotationSymbolOccurrence __Symbol)
 {
     this._Symbol = __Symbol;
 }