/help $editbox

$editbox(window,N)
Returns the text in the editbox of the specified window. If N = 1, returns the text in the second editbox in a channel window, if it's open.
Properties: start, end, selstart, selend

First thing is minor.
(1) Is that just a typo "start" "end" becuase i cant get any result for them.?

Second thing more major.
(2) when using "/editbox -ab2e4 12345678" the editbox is filled with 12345678 with 2 & 3 highlighted, cursor positioned following 3, as expected
but when doing "/editbox -ab4e2 12345678" the editbox is filled with 12345678 cursor is positioned following 3, not as i expected
I would have expected 2 & 3 to be highlighted and the curosor before the 2, I say this becuase i can manually select in that order and have the cursor at the front of the selection.

* I do note if u have manually highlighted from following 3 backward to before 2 , you recieve $editbox().selstart = 2 & $editbox().selend = 4 , so it looks like its just returning begining and end of selection in left to right order, now if thats the case thats fine with me, but could we then have a "/editbox -cN" and "$editbox().cursor" for cursor position, as I would like to be able to identify the exact position of the cursor on the line, which is still a tossup between the begining or end when a section is selected.