No, right now there is no way to set the min.
This can change of course. The difference would be that it would no longer be 1 based. Right now, the lowest number is 1. This would change to 0.
One of the things AI did was to make things 1 based, in an effort to make things make more sense. If I want the first entry, I use 1. However, this becomes a big pain when working in Java, as everything in Java is 0 based.
So now the default settings would be:
100 total positions
0 first available position (slider all the way to the left)
99 last available position (slider all the way to the right)
As for the event, it can be modified to add the position, however, you can also call the sliderBar1.Position() method to get the current position of the bar. I'll add the position to the event anyways.
There's also a boolean that is returned in the event, telling you if it was moved by the user or not.
The first argument is the boolean, the second will be the position.
I'll get the jar updated and on the deploy site soon.
Ryan