THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 29/06/2011 at 16:54, xxxxxxxx wrote:
I would assume that you simply get the first object in the AtomArray (sort of like the result of SendModelingCommand()) like:
DescPropertyDragData* dpdd = static_cast<DescPropertyDragData*>(object);
C4DAtom* ca = dpdd->arr->GetIndex(0L);
if (ca)
{
LONG type = ca->GetType();
GePrint("Type = "+LongToString(type)); // just to see the value during development :)
}