Hello, I'm trying to retrieve the names of the parameters on Field Objects. The following could works when I use it on most other objects, with the ID changed of course. Using it on a Solid Field Layer in the following example it doesn't return a name though. Is there a special way to access descriptions on Field Layers?
Dan
AutoAlloc<Description> senderdesc;
op->GetDescription(senderdesc, DESCFLAGS_DESC::NONE))
const BaseContainer *desccontainer = NULL;
//checking [c4d.FIELDS,12,1000] the "Value" parameter on a Solid Field Layer
desccontainer = senderdesc->GetParameter(parameterID, *testcontainer, descarray);
String parametername = desccontainer->GetString(DESC_NAME, "" );//trying to get its name, should be returning "Value", bit is instead empty