// =========================================================================== // Copyright 2018 Autodesk, Inc. All rights reserved. // // Use of this software is subject to the terms of the Autodesk license // agreement provided at the time of installation or download, or which // otherwise accompanies this software in either electronic or hard copy form. // =========================================================================== // // // Creation Date: Oct. 31/97 // // Description: // doClearKey is the actual proc that is executed from the // Edit->Keys->Delete Keys option box or menu // // Input Arguments: // // Return Value: // The number of curves from which keys were cut. // global proc int doClearKey( int $whichRange, string $timeRange, string $option, string $hierarchy, int $doControlPoints, int $doShapes, int $useChannelBox, int $allAnimCurves, string $selectionConnection, int $fromDeleteChannels ) { string $args[] = {(string) $whichRange, $timeRange, $option, $hierarchy, $doControlPoints, $doShapes, $useChannelBox, $allAnimCurves, $selectionConnection, $fromDeleteChannels }; return doClearKeyArgList( "1", $args ); }