String function set for dependency node data.
MFnStringData allows the creation and manipulation of MString data objects for use in the dependency graph.
If a user written dependency node either accepts or produces MString, then this class is used to extract or create the data that comes from or goes to other dependency graph nodes. The MDataHandle::type method will return kStringData when data of this type is present. To access it, the MDataHandle::data method is used to get an MObject for the data and this should then be used to initialize an instance of MFnStringData.
#include <MFnStringData.h>
Public Member Functions |
|
virtual MFn::Type | type () const |
Function set type. |
|
virtual | ~MFnStringData () |
Destructor. |
|
MFnStringData () | |
Default constructor. |
|
MFnStringData (MObject &object, MStatus *ReturnStatus=NULL) | |
Constructor. |
|
MString | string (MStatus *ReturnStatus=NULL) const |
Return a copy of the string held in this
instance. |
|
MStatus | set (const MString &newString) |
Set this instance to hold a copy of the
given string. |
|
MObject | create (const MString &str, MStatus *ReturnStatus=NULL) |
Create a new MObject,
attach it to this instance and initialize it to a copy of the given
string. |
|
MObject | create (MStatus *ReturnStatus=NULL) |
Create a new MObject,
attach it to this instance and initialize it to the null string.
|
|
MFnStringData (const MObject &object, MStatus *ReturnStatus=NULL) | |
Constructor. |
|
Protected Member Functions |
|
virtual const char * | className () const |
Class name. |
MFnStringData | ( | 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 |
MFnStringData | ( | 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] |
Return a copy of the string held in this instance.
[out] | ReturnStatus | kFailure if the instance is not attached to an MObject, and kSuccess otherwise. |
Create a new MObject, attach it to this instance and initialize it to a copy of the given string.
[in] | str | the string to copy |
[out] | ReturnStatus | kSuccess |