Enumerated attribute function set.
Function set for enumerated attributes. These attributes accept fields as input. Each field consists of a short and its associated string, which is a descriptive name for the field.
apiMeshCreator.cpp, buildRotationNode.cpp, GLSLShaderNode.cpp, meshOpNode.cpp, and quadricShape.cpp.
#include <MFnEnumAttribute.h>
Public Member Functions |
|
virtual MFn::Type | type () const |
Function set type. |
|
virtual | ~MFnEnumAttribute () |
Destructor. |
|
MFnEnumAttribute () | |
Default constructor. |
|
MFnEnumAttribute (MObject &object, MStatus *ReturnStatus=NULL) | |
Constructor. |
|
MObject | create (const MString &fullName, const MString &briefName, short defaultValue=0, MStatus *ReturnStatus=NULL) |
Creates an enumerated attribute object.
|
|
MStatus | addField (const MString &fieldString, short index) |
Add a field (a string/index pair) to the
enumeration. |
|
MString | fieldName (short index, MStatus *ReturnStatus=NULL) const |
Retrieve the string associated with a given
index. |
|
short | fieldIndex (const MString &fieldString, MStatus *ReturnStatus=NULL) const |
Retrieve the index associated with a given
string. |
|
MStatus | getMin (short &minValue) const |
Return the minimum value for this attribute.
|
|
MStatus | getMax (short &maxValue) const |
Return the maximum value for this attribute.
|
|
MStatus | setDefault (short index) |
Set a new default value for this enum
attribute. |
|
MStatus | setDefault (const MString &fieldString) |
Set a new default value for this enum
attribute. |
|
MStatus | getDefault (short &index) const |
Get the default value for the enum
attribute. |
|
MString | defaultValue (MStatus *ReturnStatus=NULL) const |
Get the default value for the enum
attribute. |
|
MFnEnumAttribute (const MObject &object, MStatus *ReturnStatus=NULL) | |
Constructor. |
|
MStatus | getDefault (MString &fieldString) const |
NO SCRIPT SUPPORT. |
|
Protected Member Functions |
|
virtual const char * | className () const |
Class name. |
MFnEnumAttribute | ( | MObject & | object, |
MStatus * | ReturnStatus =
NULL |
||
) |
Constructor.
Class constructor that initializes the function set to the given MObject.
[in] | object | The MObject to attach the function set to |
[out] | ReturnStatus | the return status |
MFnEnumAttribute | ( | const MObject & | object, |
MStatus * | ReturnStatus =
NULL |
||
) |
Constructor.
Class constructor that initializes the function set to the given MObject.
[in] | object | The MObject to attach the function set to |
[out] | ReturnStatus | the return status |
MFn::Type type | ( | ) | const [virtual] |
const char * className | ( | ) | const [protected, virtual] |
MObject create | ( | const MString & | fullName, |
const MString & | briefName, | ||
short | defaultValue = 0 , |
||
MStatus * | ReturnStatus =
NULL |
||
) |
Creates an enumerated attribute object.
The create method needs to be called on a per node basis. That means if you want to create and add the same attribute to multiple nodes, you need to call the create method for each node to get a unique MObject back. If you call create just once and add the attribute to multiple nodes, Maya will encounter a fatal error.
[in] | fullName | The full name of the attribute |
[in] | briefName | The brief name of the attribute |
[in] | defaultValue | The default value of the attribute |
[out] | ReturnStatus | Status code for the operation. |
Add a field (a string/index pair) to the enumeration.
[in] | fieldString | The string describing the field |
[in] | index | The index of the field |
Retrieve the string associated with a given index.
[in] | index | The index of the string to look up |
[out] | ReturnStatus | Status code for the operation. |
Retrieve the index associated with a given string.
[in] | fieldString | The string describing the field. |
[out] | ReturnStatus | Status code for the operation. |
MStatus getMin | ( | short & | minValue | ) | const |
Return the minimum value for this attribute.
[out] | minValue | the minimum value for this attribute |
MStatus getMax | ( | short & | maxValue | ) | const |
Return the maximum value for this attribute.
[out] | maxValue | the maximum value for this attribute |
MStatus setDefault | ( | short | index | ) |
Set a new default value for this enum attribute.
[in] | index | new the default value for this attribute |
Set a new default value for this enum attribute.
[in] | fieldString | new the default value for this attribute |
MStatus getDefault | ( | short & | index | ) | const |
Get the default value for the enum attribute.
[out] | index | default index value. |
Get the default value for the enum attribute.
[out] | ReturnStatus | Optional status code. See below. |
NO SCRIPT SUPPORT.
Get the default value for the enum attribute.
Python Notes
This method is not supported in Python. Please see defaultValue()
[out] | fieldString | the string value for the default enum |