Go to: Synopsis. Return value. MEL examples.
selectCurveCV ( string $CVsToSelect )
None
| Variable Name | Variable Type | Description |
|---|---|---|
| $CVsToSelect: valid strings are "first", "last" and "all". |
// Select the first cv.
selectCurveCV("first");
// Select the last cv.
selectCurveCV("last");
// Select all cv's.
selectCurveCV("all");