This reference page is linked to from the following overview topics: Custom Attributes.
#include <custattrib.h>

Public Member Functions |
|
| virtual SClass_ID | SuperClassID () |
| Retrieves a constant representing the type
of the plugin. |
|
| virtual const MCHAR * | GetName () |
| virtual ParamDlg * | CreateParamDlg (HWND hwMtlEdit, IMtlParams *imp) |
| virtual bool | CheckCopyAttribTo (ICustAttribContainer *to) |
| virtual SvGraphNodeReference | SvTraverseAnimGraph (IGraphObjectManager *gom, Animatable *owner, int id, DWORD flags) |
| virtual SClass_ID SuperClassID | ( | ) | [inline, virtual] |
Retrieves a constant representing the type of the plugin.
Reimplemented from ReferenceTarget.
Reimplemented in MSCustAttrib.
{ return CUST_ATTRIB_CLASS_ID; }
| virtual const MCHAR* GetName | ( | ) | [inline, virtual] |
Reimplemented in MSCustAttrib.
{ return _M("Custom Attribute");}
| virtual ParamDlg* CreateParamDlg | ( | HWND | hwMtlEdit, |
| IMtlParams * | imp | ||
| ) | [inline, virtual] |
Reimplemented in MSCustAttrib.
{return NULL;}
| virtual bool CheckCopyAttribTo | ( | ICustAttribContainer * | to | ) | [inline, virtual] |
{ return true; }
| virtual SvGraphNodeReference SvTraverseAnimGraph | ( | IGraphObjectManager * | gom, |
| Animatable * | owner, | ||
| int | id, | ||
| DWORD | flags | ||
| ) | [inline, virtual] |
| gom | Points to the schematic view window manager. |
| owner | The owning animatable. |
| id | This is usually the sub-anim number (but can actually be any value the developer chooses). |
| flags | See List of Schematic %View AddAnimatable Flags. |
Reimplemented from Animatable.
{
return SvStdTraverseAnimGraph(gom, owner, id, flags);
}