ā2019-08-15
11:17 AM
- last edited on
ā2022-09-29
10:19 AM
by
Daniel Kassai
GSErrCode GetAllPropertyValues (const API_Guid& elemGuid, GS::Array<API_PropertyValue>& values)
{
GS::Array<API_PropertyDefinition> definitions;
GSErrCode error = ACAPI_Element_GetPropertyDefinitions (elemGuid, API_PropertyDefinitionFilter_All, definitions);
if (error == NoError) {
GS::Array<API_PropertyDefinition> propertyDefinitionList;
for (UInt32 i = 0; i < definitions.GetSize (); i++) {
if (ACAPI_Element_IsPropertyDefinitionVisible (elemGuid, definitions.guid) && ACAPI_Element_IsPropertyDefinitionAvailable (elemGuid, definitions.guid)) {
propertyDefinitionList.Push (definitions);
}
}
GS::Array<API_Property> properties;
error = ACAPI_Element_GetPropertyValues (elemGuid, propertyDefinitionList, properties);
if (error == NoError) {
for (UInt32 i = 0; i < properties.GetSize (); i++) {
if (properties.isDefault) {
values.Push (properties.definition.defaultValue);
} else {
values.Push (properties.value);
}
}
}
}
return error;
}
GSErrCode GetAllPropertyValues (const API_Guid& elemGuid, GS::Array<API_PropertyValue>& values)
{
GS::Array<API_PropertyDefinition> definitions;
GSErrCode error = ACAPI_Element_GetPropertyDefinitions (elemGuid, API_PropertyDefinitionFilter_All, definitions);
if (error == NoError) {
GS::Array<API_Guid> propertyDefinitionList;
for (UInt32 i = 0; i < definitions.GetSize (); i++) {
if (ACAPI_Element_IsPropertyDefinitionVisible (elemGuid, definitions.guid) && ACAPI_Element_IsPropertyDefinitionAvailable (elemGuid, definitions.guid)) {
propertyDefinitionList.Push (definitions.guid);
}
}
GS::Array<API_Property> properties;
error = ACAPI_Element_GetPropertyValuesByGuid (elemGuid, propertyDefinitionList, properties);
if (error == NoError) {
for (UInt32 i = 0; i < properties.GetSize (); i++) {
if (properties.isDefault) {
values.Push (properties.definition.defaultValue);
} else {
values.Push (properties.value);
}
}
}
}
return error;
}
GetElementProperties: ACAPI_Element_GetPropertyDefinitions: NoError: The function has completed with success (0).
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDADEF6150.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDADEF7768.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDADEF7768.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDADEF6150.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDADEF6150.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDADEF6150.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDADEF7768.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDADEF7768.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDADEF6150.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDADEF6150.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDADEF5EF0.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDADEF7508.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDADEF7508.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDADEF5EF0.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDADEF5DD0.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDADEF7478.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDADEF7478.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDADEF5DD0.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDADEF5E60.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDADBF91F0.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDADBFACA8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDADBFACA8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDADBF91F0.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDADBF9578.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDADBF91F0.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDADDF9518.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDADDFAC48.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDADDFAC48.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDADDF9518.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDADCF98A0.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDADCFAEB8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDADCFAEB8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDADCF98A0.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAE7F9BC0.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAE7FB1D8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAE7FB1D8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAE7F9BC0.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAD4F94E8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDADBF90D8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAD4FB0B8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDADBFACA8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDADBFACA8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAD4FB0B8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAD4F94E8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDADBF90D8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAD4F94E8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAD4F94E8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDADBF90D8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAD4FB0B8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAD4FB0B8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDADBF90D8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDADBFACA8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAD4F94E8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDADBFACA8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAD4F94E8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAD4F94E8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAD4FB0B8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAD4FB0B8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAD4F94E8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAD4F94E8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDADBF90D8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDADBF90D8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAD4F94E8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAD4FB0B8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDADBF90D8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAD4FB0B8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDADBFACA8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDADBFACA8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAD4F94E8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDADBF90D8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAD4F94E8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDADBF90D8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDADBF90D8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDADBFACA8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDADBFACA8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDADBF90D8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDADBF90D8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAE4F96D0.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAE4FACE8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAE4FACE8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAE4F96D0.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAE4F95B8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDADDF9518.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDADDFAC48.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDADDFAC48.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDADDF9518.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDADDF9518.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDADDF9630.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDADDFAC48.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDADDFAC48.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAD6F9808.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAD6FAF38.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAD6FAF38.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDADBF9690.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDADBFACA8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDADBFACA8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAD6F9808.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAD6F9920.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAD6FAF38.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAD6FAF38.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDADBF9690.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAD6F9920.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAD6F9808.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAE4F96D0.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAE4FACE8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAE4FACE8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAE4F96D0.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAD6F9920.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAE4F95B8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAD6FAF38.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAD6FAF38.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAE4F96D0.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAE4FACE8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAE4FACE8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAD6F9920.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAD6F9808.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAE4F96D0.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAE4F95B8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAE4F96D0.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAE4FACE8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAE4FACE8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAE4F96D0.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAE4F95B8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAE4F96D0.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAE4FACE8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAE4FACE8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAE4F96D0.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAE4F95B8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAE4F96D0.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAE4FACE8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAE4FACE8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAD4F9988.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAD4FB0B8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAE3F9A48.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAD4FB0B8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAE3FB178.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAE3FB178.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDADEF9560.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDADEFAB78.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDADEFAB78.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAE3F9A48.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAE3F9A48.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAD4F9988.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAE3F9A48.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAD4F9988.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAE3FB178.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAE3FB178.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDADEF9560.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAD4F9988.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAD4FB0B8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAD4FB0B8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAD5F95F0.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAD5FAC08.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAD5FAC08.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAD6F9808.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAD6FAF38.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAD6FAF38.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDADEF9448.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDADEFAB78.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAD5F95F0.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDADEFAB78.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAD6F9808.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAD5F94D8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAD6F9808.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAD6F9808.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAD6FAF38.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAD6FAF38.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDADEF9448.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDADEF9448.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDADEF9560.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDADEFAB78.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDADEFAB78.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDADEF9560.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDADEF9448.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAE7F9AA8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAE7FB1D8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAE7FB1D8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAE7F9AA8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDACDF96B0.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDACDFB168.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDACDFB168.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDACDF96B0.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAE3F9A48.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAE3FB178.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAE3FB178.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAE3F9A48.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAE3F9A48.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAE3F9A48.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAE3FB178.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAE3FB178.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAD4F9988.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAD4FB0B8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAD4FB0B8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAD4F9988.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAD4F9988.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAD4F9988.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAD4FB0B8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAD4FB0B8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAE3F9B60.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAE3FB178.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAE3FB178.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAE3F9B60.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAE3F9A48.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAE3F9B60.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAE3FB178.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAE3FB178.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAE3F9B60.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAE3F9A48.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAE3FB178.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAE3FB178.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAD4F9988.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAE3F9A48.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDADCF98A0.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAD4FB0B8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDADCFAEB8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAE3F9A48.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAD4FB0B8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDADCFAEB8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAD4F9988.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAD4F9988.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDADCF98A0.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAD4F9AA0.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAD4FB0B8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAD4FB0B8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAD4F9AA0.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAD4F9988.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAE7F96E0.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAE7FB1D8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAE7FB1D8.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDADDF9150.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDADDFAC48.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDADDFAC48.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAE7F96E0.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAE7F96E0.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDADDF9150.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDADDF9150.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAD5F95F0.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAD5FAC08.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGError at memory location 0x000000BDAD5FAC08.
Exception thrown at 0x00007FFAF93B9129 in Archicad.exe: Microsoft C++ exception: GS::CGAmbiguity at memory location 0x000000BDAD5F95F0.
GetElementProperties: ACAPI_Element_GetPropertyValues: NoError: The function has completed with success (0).
ā2019-08-15 07:49 PM
ā2019-08-16 09:15 AM
GSErrCode GetAllPropertyValues (const API_Guid& elemGuid, GS::Array<API_PropertyValue>& values)
{
GS::Array<API_PropertyDefinition> definitions;
GSErrCode error = ACAPI_Element_GetPropertyDefinitions (elemGuid, API_PropertyDefinitionFilter_All, definitions);
if (error == NoError) {
GS::Array<API_PropertyDefinition> propertyDefinitionList;
for (UInt32 i = 0; i < definitions.GetSize (); i++) {
if (ACAPI_Element_IsPropertyDefinitionVisible (elemGuid, definitions.guid) && ACAPI_Element_IsPropertyDefinitionAvailable (elemGuid, definitions.guid)) {
API_Property property;
error = ACAPI_Element_GetPropertyValue (elemGuid, definitions.guid, property);
if (error == NoError) {
if (property.isDefault) {
values.Push (property.definition.defaultValue);
} else {
values.Push (property.value);
}
}
}
}
}
return error;
}
ā2019-08-16 09:40 AM
API_Guid elementGUID;
GS::Array<API_PropertyDefinition> definitions;
GS::Array<API_PropertyValue> property_values;
GS::Array<API_Property> properties;
GSErrCode error = ACAPI_Element_GetPropertyDefinitions (elementGUID, API_PropertyDefinitionFilter_UserDefined, definitions);
if(error == NoError){
for (UInt32 j = 0; j < definitions.GetSize (); j++) {
API_Property property;
property.definition = definitions;
properties.Push (property);
ACAPI_Element_GetPropertyValue(elementGUID, definitions.guid, property);
properties.Push (property); // push property to array
if (property.isDefault) {
property_values.Push (definitions.defaultValue.basicValue);
} else {
property_values.Push (property.value);
}
}
}else{
WriteReport("could not get property definitions");
}
ā2019-08-16 10:20 AM