GRAPHISOFT®

Python APIVersion: 0.23 Beta

GetPropertyGroupDictionary

Lists the Property Groups in a dictionary..

def GetPropertyGroupDictionary () -> Dict (String, APIObject)

 

Parameters

 

Return Values

A dictionary containing the available Property Group objects. Keys of the items are the GUIDs of the groups.

 

Remarks

This function is analogous to the ACAPI_Property_GetPropertyGroups function of the C++ API.

For information on how to interpret the returned APIObject dictionary values, visit the C++ documentation.

 

Example

for guid, group in GetPropertyGroupDictionary().items():
    print("{} {}".format (group.name, guid))

 

Requirements

Version: Python API 0.1 or Later
Module: GS

 

See Also

CreatePropertyGroup, ChangePropertyGroup

All functions