We value your input! Please participate in Archicad 28 Home Screen and Tooltips/Quick Tutorials survey
2020-02-25 02:38 PM - last edited on 2022-09-26 11:00 PM by Daniel Kassai
2020-03-20 04:30 PM
API_LibPart libPart = {}; API_LibPartSection section = {}; GSHandle sectionHdl = nullptr; libPart.typeID = APILib_ObjectID; libpart.index = someLibPartIndex; libPart.docu_UName = "MyLibPart"; section.sectType = API_Sect3DBinData; section.subIdent = APISubIdent_Any; err = ACAPI_LibPart_UpdateSection( libPart.index, §ion, sect3DBinaryHandle, nullptr );where sect3DBinaryHandle is a handle to your binary data.
2020-03-28 02:06 PM