cancel
Showing results for 
Search instead for 
Did you mean: 
EN
cancel
Showing results for 
Search instead for 
Did you mean: 
_JJ_
Contributor

Questions regarding the limit of python in archicad?

So i asked a question yesterday that i worded badly so ill give it another go in hopes of some clarification regarding the Python link.

1. Is it possible to to make Python write in tables?

2. When i try to extract ElementID it gives me the GUID. i dont need the GUID i need the name. example: YV-001

 

Thanks in advance!

1 Solution

Accepted Solutions

1-You can extract value and put them in an excel file. You can't modify an archicad schedule.

2- You need the GUID of the element and the GUID of the property to retrieve a value:

 

GetPropertyValuesOfElements(elements: List[ElementIdArrayItem], properties: List[PropertyIdArrayItem]) → List[PropertyValuesOrError]

    Returns the property values of the elements for the given property.

    Parameters:

            elements (list of ElementIdArrayItem) – A list of elements.

            properties (list of PropertyIdArrayItem) – A list of property identifiers.

    Returns:

        A list of property value lists.
    Return type:

        list of PropertyValuesOrError

 

Archicad 27 - GDL - PYTHON

Go to post

2 Replies 2

1-You can extract value and put them in an excel file. You can't modify an archicad schedule.

2- You need the GUID of the element and the GUID of the property to retrieve a value:

 

GetPropertyValuesOfElements(elements: List[ElementIdArrayItem], properties: List[PropertyIdArrayItem]) → List[PropertyValuesOrError]

    Returns the property values of the elements for the given property.

    Parameters:

            elements (list of ElementIdArrayItem) – A list of elements.

            properties (list of PropertyIdArrayItem) – A list of property identifiers.

    Returns:

        A list of property value lists.
    Return type:

        list of PropertyValuesOrError

 

Archicad 27 - GDL - PYTHON
_JJ_
Contributor

Thanks for the reply @Mathias Jonathan. if you look at my latest post there is more info on what i need to make. and lets say it as it is. its not making. its very frustrating. 

Didn't find the answer?

Check other topics in this Forum

Back to Forum

Read the latest accepted solutions!

Accepted Solutions

Start a new conversation!