Complete the code to fix a component in place in SolidWorks.
component.[1]()Using Fix() locks the component in place so it cannot move.
Complete the code to ground a component in SolidWorks assembly.
assembly.[1]Component(component)The GroundComponent() method fixes the component so it cannot move or rotate.
Fix the error in the code to properly ground a component.
assembly.[1](component)Method names in SolidWorks API are case sensitive. The correct method is GroundComponent with capital G and C.
Fill both blanks to fix and then ground a component in SolidWorks.
component.[1]() assembly.[2]Component(component)
First, Fix() locks the component position, then GroundComponent() fixes it in the assembly.
Fill all three blanks to fix, ground, and then release a component in SolidWorks.
component.[1]() assembly.[2]Component(component) assembly.[3]Component(component)
First, Fix() locks the component, then GroundComponent() fixes it in assembly, finally ReleaseComponent() frees it.
