|
SAA_fcurvelistSetSelectedElements
Selects and unselects function curves in the Fcurve window.
SAA_fcurvelistSetSelectedElements scene nb fcurves selFlag
scene
The current scene. Use SAA_AllocScene to allocate a scene.
nb
Number of selected function curves in the Fcurve window.
fcurves
An array of function curves. Use SAA_AllocElem to allocate an fcurve.
selFlag
TRUE to select the function curves in fcurves, and FALSE
to unselect the function curves.
Possible Errors
SI_ERR_NO_FCV_EDITOR if SOFTIMAGE 3D is running in standalone mode.
SI_ERR_NOTSUPPORTED if nb is greater than 1 and the current
selection mode is single.
Notes
- The Fcurve window does not have to be open for you to use this function.
- Use
SAA_selectlistGetMode() to check the current selection mode and, if
necessary, SAA_selectlistSetMode() to set the selection mode before calling SAA_fcurvelistSetSelectedElements().
- If the selection mode is single, this function clears the list of selected function
curves and then selects the specified function curve.
- If the selection mode is multi, this function either extends or shortens the current
selection list.
See Also
Example
See the example for SAA_fcurvelistAddElements.
|