No you normally cant. See Drivers.cpp line 138
void gotoPosition(float newPos)
{
bool up = true;
if(newPos < 0)
newPos = 0;
if(newPos > maxDistance)
newPos = maxDistance;
here you see the tests. Going beyond end stop would break end stop normally. You can of course remove the target test then it would go where ever you want.