コード例 #1
0
        public virtual void IfcParse(int propIndex, IPropertyValue value)
        {
            switch (propIndex)
            {
            case 0:
                _dependingProperty = (IfcProperty)value.EntityVal;
                break;

            case 1:
                _dependantProperty = (IfcProperty)value.EntityVal;
                break;

            case 2:
                _name = value.StringVal;
                break;

            case 3:
                _description = value.StringVal;
                break;

            case 4:
                _expression = value.StringVal;
                break;

            default:
                this.HandleUnexpectedAttribute(propIndex, value); break;
            }
        }
コード例 #2
0
        public override void Parse(int propIndex, IPropertyValue value, int[] nestedIndex)
        {
            switch (propIndex)
            {
            case 0:
                _dependingProperty = (IfcProperty)(value.EntityVal);
                return;

            case 1:
                _dependantProperty = (IfcProperty)(value.EntityVal);
                return;

            case 2:
                _name = value.StringVal;
                return;

            case 3:
                _description = value.StringVal;
                return;

            case 4:
                _expression = value.StringVal;
                return;

            default:
                throw new XbimParserException(string.Format("Attribute index {0} is out of range for {1}", propIndex + 1, GetType().Name.ToUpper()));
            }
        }
コード例 #3
0
ファイル: IfcProperty.cs プロジェクト: tnesser/XbimEssentials
        public override bool Equals(object obj)
        {
            // Check for null
            if (obj == null)
            {
                return(false);
            }

            // Check for type
            if (this.GetType() != obj.GetType())
            {
                return(false);
            }

            // Cast as IfcRoot
            IfcProperty root = (IfcProperty)obj;

            return(this == root);
        }