THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 12/11/2012 at 00:50, xxxxxxxx wrote:
User Information:
Cinema 4D Version: 13
Platform:
Language(s) : C++ ;
---------
Hi,
I want to make my dialog look like Driver tag's behavior.
It is part of my dialog.
Here is AddCustomGui part of my code.
GroupBegin(DLG_Desc_GRP,BFH_SCALEFIT|BFV_SCALEFIT,1,0,"ShowProperties",BFV_GRIDGROUP_EQUALROWS);
BaseContainer customgui;
customgui.SetBool(DESCRIPTION_ALLOWFOLDING,TRUE);
customgui.SetLong(DESCRIPTION_MODALMODE,1);
desc = (DescriptionCustomGui* )AddCustomGui(DLG_DESCRIPTION,CUSTOMGUI_DESCRIPTION,String(),BFH_SCALEFIT,0,0,customgui);
GroupEnd();
Driver tag's Link behavior is seem to be folding group however I wasn't able to find this example in SDK docs.