engiSetComment

This call can be used to add a comment to an instance when exporting the content. The comment is available in the exported/saved IFC file.

Syntax

//
//   Strong typing definition
//
void            engiSetComment(
                        SdaiInstance            instance,
                        const char              * comment
                    );

static  inline  void    engiSetComment(
                                SdaiInstance            instance,
                                char                    * comment
                            )
{
    return  engiSetComment(
                    instance,
                    (const char*) comment
                );
}


//
//   Weak typing definition
//
void    __declspec(dllexport) __stdcall engiSetComment(
                                                int_t                   instance,
                                                const char              * comment
                                            );

static  inline  void    engiSetComment(
                                int_t                   instance,
                                char                    * comment
                            )
{
    return  engiSetComment(
                    instance,
                    (const char*) comment
                );
}
    

Property instance

Size: 32 bit / 4 byte (value)
...

Property comment

Size: 32 bit / 4 byte (reference)
...