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 FORCE_APPLY
Element Information
Sample Code
Example code for the id FORCE_APPLY in DynBinForce
Note that this is not the actual code from the DynBinForce file.
This code is just an example to show you how to add a similar control to your own description.
Resource File Code (DynBinForce.res)
LONG FORCE_APPLY { CYCLE { FORCE_APPLY_A; FORCE_APPLY_B; FORCE_APPLY_BOTH; } }
Header File Code (DynBinForce.h)
#ifndef DYNBINFORCE_H__ #define DYNBINFORCE_H__ enum { FORCE_APPLY = 1000, //First ID should start at 1000 FORCE_APPLY_A = 1, FORCE_APPLY_B = 2, FORCE_APPLY_BOTH = 3, }; #endif // DYNBINFORCE_H__
String File Code (DynBinForce.str)
// C4D-StringResource // Identifier Text STRINGTABLE { FORCE_APPLY "Apply"; FORCE_APPLY_A "OnlytoA"; FORCE_APPLY_B "OnlytoB"; FORCE_APPLY_BOTH "ToBoth"; }