THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 27/05/2010 at 04:47, xxxxxxxx wrote:
User Information:
Cinema 4D Version: 11.5
Platform: Windows ;
Language(s) : C++ ;
---------
Hello,
I try to read the user data from base objects with the BrowseGetNext(..) function.
I get back the DescID and a basecontainer with the data.
But now i don't know how i can access to this data. Which IDs should i using?
I get only the name of the "User Data" with following function.
...
while ( pUserData->BrowseGetNext(handle, &id, &data) )
{
uid = id[1].id;
uType = id[1].dtype;
GeData att_name;
att_name = data->GetData(1);
}
But i need also the value of it and some furter informations like min and max values or so.
Has anyone an idea?