我正在研究修改数据的基本示例(https://github.com/xBimTeam/XbimEssentials)。我唯一要更改的是在下面的代码中,我想在其中添加一个 IfcPropertyTableValue 而不是 IfcPropertySingleValue。
此代码运行,但在对象属性下的 XbimXplorer 中,什么都没有 - 它是空白的。
为了确保,示例代码以及其他属性类型确实有效,并且确实显示在 Xplorer 中的属性下。
var pSetRel = model.Instances.New<IfcRelDefinesByProperties>(r =>
{
r.GlobalId = Guid.NewGuid();
r.RelatingPropertyDefinition = model.Instances.New<IfcPropertySet>(pSet =>
{
pSet.Name = "Points";
// FOR EACH POINT i :
pSet.HasProperties.Add(model.Instances.New<IfcPropertyTableValue>(p =>
{
p.Name = "Points " + i;
// FOR EACH COORDINATE x :
p.DefiningValues.Add(new IfcText(x));
p.DefinedValues.Add(new IfcReal(-3.25));
}));
});
});
我怎样才能使这项工作?
我还尝试使用代码来读取属性,以防 XbimXplorer 不显示表格。此代码运行并打印零行(但适用于 Xplorer 中显示的其他属性):
// Try to read and print the new property
var nameObj = "my_object_name";
var checkObj = model.Instances.FirstOrDefault<IIfcBuildingElement>(d => d.Name == nameObj);
if (checkObj == null)
{
outputBox.AppendText(newLine + "Object: " + nameObj + " not found");
}
else
{
var properties = checkObj.IsDefinedBy
.Where(r => r.RelatingPropertyDefinition is IIfcPropertySet)
.SelectMany(r => ((IIfcPropertySet)r.RelatingPropertyDefinition).HasProperties)
.OfType<IIfcPropertySingleValue>();
foreach (var property in properties)
outputBox.AppendText($"Property: {property.Name}, Value: {property.NominalValue}");
}
如果我可以一次添加几个定义/定义的值对也会很方便,例如像这样(类似于普通的 C# 列表):
IEnumerable<IfcValue> definingValues = new IfcText() {"x", "y", "z", "k"};
p.DefinedValues.AddRange(definingValues);
IEnumerable<IfcValue> definedValues = new IfcReal() {0.0, 1.6, -2.5, 3.33};
p.DefinedValues.AddRange(definedValues);
但是,{"x", "y", "z", "k"}
然后标记为错误Cannot initialize type 'IfcText' with a collection initializer 因为它没有实现 'System.Collections.IEnumerable'。