THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 18/11/2003 at 07:43, xxxxxxxx wrote:
User Information:
Cinema 4D Version: 8.207
Platform: Windows ; Mac ; Mac OSX ;
Language(s) : C++ ;
---------
I do not understand the following function. What do the properties returned denote? Are they the custom parameters for each resource symbol that are defined post index ( MIN or MAX for example )?
Regards,
Thomas Cray
**virtual CustomProperty * GetProperties() **Return the properties that this data type accepts in resource files. This is a pointer to a global array of CustomProperty structures, which is the easiest to create with direct initialisation like this:
CustomProperty bitmapbuttonprops[] =
{
{ CUSTOMTYPE_FLAG, BITMAPBUTTON_BORDER, "BORDER" },
{ CUSTOMTYPE_FLAG, BITMAPBUTTON_BUTTON, "BUTTON" },
{ CUSTOMTYPE_END, 0, NULL }
};
See CustomProperty for more information.
**
Return
**
CustomProperty *
Pointer to a global array of CustomProperty, ended with a CUSTOMTYPE_END property.