Difference between wdExtend and wdMove

C

constance

Hi everybody
can somebody tell me the difference between
Selection.HomeKey UNIT:=wdStory, Extend:=wdExtend and Selection.HomeKe
UNIT:=wdStory, Extend:=wdMove ?

Thanx

Lyn
 
M

Martin Seelhofer

Hi Lyne
can somebody tell me the difference between
Selection.HomeKey UNIT:=wdStory, Extend:=wdExtend and Selection.HomeKey
UNIT:=wdStory, Extend:=wdMove ?

While wdMove moves the selection (no inverted text visible),
wdExtend extends the selection to the beginning of the document.
If your cursor is e.g. in the 7th paragraph and you use wdMove,
your cursor is simply moved to the beginning of the document. If,
on the other hand, you use wdExtend, then the first 6 paragraphs
will be selected...


Cheers,

Martin
 
Top