Userdata group look
-
On 06/03/2015 at 16:52, xxxxxxxx wrote:
User Information:
Cinema 4D Version: R16
Platform: Windows ; Mac OSX ;
Language(s) : C++ ; PYTHON ;---------
I'm tweaking a CommandData plugin and I was curious if there was a way to get the folded sub-group look in a dialog. It's the look when you add a Userdata group and then add another group underneath. I'm looking for the Res way of doing it. I've been using Resedit and fiddling but none of the options I use generates that look. -
On 10/03/2015 at 02:56, xxxxxxxx wrote:
Hello,
the "folded" groups you see in the attribute manager are no basic GUI elements. The attribute manager uses the DescriptionCustomGui element to display parameters and groups (take a look at the Active Object Dialog example). This GUI element uses the QuickTabCustomGui element to display group titles and to offer a way to fold these groups. This behavior can be re-created with code but not using a res file.
Best wishes,
Sebastian -
On 10/03/2015 at 18:33, xxxxxxxx wrote:
Thank you, that is unfortunate, but at least I know what's possible now.