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 MDATA_KNIFEPLANE_PLANE_PRESET
Element Information
Sample Code
Example code for the id MDATA_KNIFEPLANE_PLANE_PRESET in ToolKnifePlane
Note that this is not the actual code from the ToolKnifePlane file.
This code is just an example to show you how to add a similar control to your own description.
Resource File Code (ToolKnifePlane.res)
LONG MDATA_KNIFEPLANE_PLANE_PRESET { ALIGN_LEFT ; CYCLE { MDATA_KNIFEPLANE_PLANE_PRESET_X; MDATA_KNIFEPLANE_PLANE_PRESET_X2; MDATA_KNIFEPLANE_PLANE_PRESET_Y; MDATA_KNIFEPLANE_PLANE_PRESET_Y2; MDATA_KNIFEPLANE_PLANE_PRESET_Z; MDATA_KNIFEPLANE_PLANE_PRESET_Z2; MDATA_KNIFEPLANE_PLANE_PRESET_CUSTOM; } }
Header File Code (ToolKnifePlane.h)
#ifndef TOOLKNIFEPLANE_H__ #define TOOLKNIFEPLANE_H__ enum { MDATA_KNIFEPLANE_PLANE_PRESET = 1000, //First ID should start at 1000 MDATA_KNIFEPLANE_PLANE_PRESET_X = 1, MDATA_KNIFEPLANE_PLANE_PRESET_X2 = 2, MDATA_KNIFEPLANE_PLANE_PRESET_Y = 3, MDATA_KNIFEPLANE_PLANE_PRESET_Y2 = 4, MDATA_KNIFEPLANE_PLANE_PRESET_Z = 5, MDATA_KNIFEPLANE_PLANE_PRESET_Z2 = 6, MDATA_KNIFEPLANE_PLANE_PRESET_CUSTOM = 7, }; #endif // TOOLKNIFEPLANE_H__
String File Code (ToolKnifePlane.str)
// C4D-StringResource // Identifier Text STRINGTABLE { MDATA_KNIFEPLANE_PLANE_PRESET ""; MDATA_KNIFEPLANE_PLANE_PRESET_X "+X"; MDATA_KNIFEPLANE_PLANE_PRESET_X2 "-X"; MDATA_KNIFEPLANE_PLANE_PRESET_Y "+Y"; MDATA_KNIFEPLANE_PLANE_PRESET_Y2 "-Y"; MDATA_KNIFEPLANE_PLANE_PRESET_Z "+Z"; MDATA_KNIFEPLANE_PLANE_PRESET_Z2 "-Z"; MDATA_KNIFEPLANE_PLANE_PRESET_CUSTOM "Custom"; }