Hi,
>If the selection or range is collapsed, the character number immediately
>to the right of the range or selection is returned
this is simply wrong.
It should read as:
"The line number where the character immediately to the right is..."
And this wrong, too.
Because, if you move the insertion point to the end of a line,
e.g. Selection.EndKey Unit:=wdLine
where there is no character at all immediately to the right,
you still get the line the insertion point is in.
If one thinks of "immediately to the right" as equal to "next",
then the help is wrong again.
Happens.

Signature
Greetings from Bavaria, Germany
Helmut Weber, MVP WordVBA
Win XP, Office 2003
"red.sys" & Chr$(64) & "t-online.de"
kenshiro2000 - 25 Jan 2006 17:15 GMT
I have tested this and it is TRUE :-)
In a blank line, the System.Information return vbCr not the row number.
Doug Robbins - Word MVP - 26 Jan 2006 05:20 GMT
MsgBox Selection.Information(wdFirstCharacterLineNumber)
displays the line number for me regardless of the state of the selection.

Signature
Hope this helps.
Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.
Doug Robbins - Word MVP
>I have tested this and it is TRUE :-)
>
> In a blank line, the System.Information return vbCr not the row number.