Functions related to accessing and changing the Renovation settings.  
More...
Functions related to accessing and changing the Renovation settings. 
◆ ACAPI_Renovation_GetActualRenovationFilter()
      
        
          | GSErrCode ACAPI_Renovation_GetActualRenovationFilter | ( | API_Guid * | renovationFilterGuid | ) |  | 
      
 
Returns the current renovation filter. 
- Parameters
- 
  
    | renovationFilterGuid | [out] The GUID of the current renovation filter. |  
 
- Returns
- 
- NoError - The function has completed with success. 
 
 
 
◆ ACAPI_Renovation_GetRenovationFilterName()
      
        
          | GSErrCode ACAPI_Renovation_GetRenovationFilterName | ( | const API_Guid * | renovationFilterGuid, | 
        
          |  |  | GS::UniString * | renovationFilterName ) | 
      
 
Returns the name of the renovation filter. 
- Parameters
- 
  
    | renovationFilterGuid | [in] The GUID of the renovation filter. |  | renovationFilterName | [out] The localized name of the renovation filter. |  
 
- Returns
- 
- NoError - The function has completed with success. 
 
 
 
◆ ACAPI_Renovation_GetRenovationFilters()
      
        
          | GSErrCode ACAPI_Renovation_GetRenovationFilters | ( | GS::Array< API_Guid > * | renovationFilterList | ) |  | 
      
 
Returns the array of renovation filters. 
- Parameters
- 
  
    | renovationFilterList | [out] The array of renovation filters. |  
 
- Returns
- 
- NoError - The function has completed with success.
- APIERR_BADPARS - The renovationFilterList parameter is nullptr. 
 
- Example
- GS::Array<API_Guid> renFilters; - if (err == NoError) { -     GS::USize nRenFilters = renFilters.GetSize (); -     for (GS::UIndex i = 0; i < nRenFilters; ++i) { -             break; -         } -     } - } 
 
 
◆ ACAPI_Renovation_GetRenovationStatusName()
      
        
          | GSErrCode ACAPI_Renovation_GetRenovationStatusName | ( | API_RenovationStatusType | renovationStatusType, | 
        
          |  |  | GS::UniString * | statusName ) | 
      
 
Returns the name of the renovation status. 
- Parameters
- 
  
    | renovationStatusType | [in] The renovation status you are interested in. |  | statusName | [out] The localized name of the renovation status. |  
 
- Returns
- 
- NoError - The function has completed with success. 
 
 
 
◆ ACAPI_Renovation_SetActualRenovationFilter()
      
        
          | GSErrCode ACAPI_Renovation_SetActualRenovationFilter | ( | const API_Guid * | renovationFilterGuid | ) |  | 
      
 
Changes the current renovation filter. 
- Since
- Archicad 25 
- Parameters
- 
  
    | renovationFilterGuid | [in] The GUID of the new renovation filter. |  
 
- Returns
- 
- NoError - The function has completed with success.