Here you will find documentation on all the descriptions that Cinema 4D currently has. You can list them Alphabetically, by Type or Plugin . The sample Python and C++ code is automatically generated and in some cases may not be 100% correct. If something doesn't work then please refer to the official Cinema 4D SDK documentation for more information.
ID PREF_VIEW_EDITOR_AXIS_POS
Element Information
Sample Code
Example code for the id PREF_VIEW_EDITOR_AXIS_POS in Prefsview
Note that this is not the actual code from the Prefsview file.
This code is just an example to show you how to add a similar control to your own description.
Resource File Code (Prefsview.res)
LONG PREF_VIEW_EDITOR_AXIS_POS { ANIM OFF; CYCLE { PREF_VIEW_AXIS_POS_OFF; PREF_VIEW_AXIS_POS_BL; PREF_VIEW_AXIS_POS_TL; PREF_VIEW_AXIS_POS_TR; PREF_VIEW_AXIS_POS_BR; } }
Header File Code (Prefsview.h)
#ifndef PREFSVIEW_H__ #define PREFSVIEW_H__ enum { PREF_VIEW_EDITOR_AXIS_POS = 1000, //First ID should start at 1000 PREF_VIEW_AXIS_POS_OFF = 1, PREF_VIEW_AXIS_POS_BL = 2, PREF_VIEW_AXIS_POS_TL = 3, PREF_VIEW_AXIS_POS_TR = 4, PREF_VIEW_AXIS_POS_BR = 5, }; #endif // PREFSVIEW_H__
String File Code (Prefsview.str)
// C4D-StringResource // Identifier Text STRINGTABLE { PREF_VIEW_EDITOR_AXIS_POS "AxisPosition"; PREF_VIEW_AXIS_POS_OFF "Off"; PREF_VIEW_AXIS_POS_BL "BottomLeft"; PREF_VIEW_AXIS_POS_TL "TopLeft"; PREF_VIEW_AXIS_POS_TR "TopRight"; PREF_VIEW_AXIS_POS_BR "BottomRight"; }