示例#1
0
        public IfcDocumentReference(IfcURIReference location, IfcIdentifier identification, IfcLabel name, IfcText description, IfcDocumentInformation referencedDocument) : base(location, identification, name)
        {
            DocumentRefForObjects = new List <IfcRelAssociatesDocument>();

            Description        = description;
            ReferencedDocument = referencedDocument;
        }
示例#2
0
 public IfcDocumentInformationRelationship(IfcLabel name, IfcText description, IfcDocumentInformation relatingDocument, List <IfcDocumentInformation> relatedDocuments, IfcLabel relationshipType) : base(name, description)
 {
     RelatingDocument = relatingDocument;
     RelatedDocuments = relatedDocuments;
     RelationshipType = relationshipType;
 }
示例#3
0
        }                                                  // optional


        /// <summary>
        /// Construct a IfcDocumentInformationRelationship with all required attributes.
        /// </summary>
        public IfcDocumentInformationRelationship(IfcDocumentInformation relatingDocument, List <IfcDocumentInformation> relatedDocuments) : base()
        {
            RelatingDocument = relatingDocument;
            RelatedDocuments = relatedDocuments;
        }
示例#4
0
 public IfcDocumentSelect(IfcDocumentInformation choice)
 {
     this.choice = choice;
 }