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 FILTEREMULATION_EDIT
Element Information
Sample Code
Example code for the id FILTEREMULATION_EDIT in Fedit
Note that this is not the actual code from the Fedit file.
This code is just an example to show you how to add a similar control to your own description.
Resource File Code (Fedit.res)
BUTTON FILTEREMULATION_EDIT { }
Header File Code (Fedit.h)
#ifndef FEDIT_H__ #define FEDIT_H__ enum { FILTEREMULATION_EDIT = 1000, //First ID should start at 1000 }; #endif // FEDIT_H__
String File Code (Fedit.str)
// C4D-StringResource // Identifier Text STRINGTABLE { FILTEREMULATION_EDIT "Edit..."; }