J
jo
I what to move left in a document if the selection text equals a vbCr
or space:
Do While Asc(Selection.Text) = 32 Or Asc(Selection.Text) =
13
Selection.MoveLeft(Unit:=Word.WdUnits.wdCharacter,
Count:=1)
intCount = intCount + 1
Loop
How do I accomplish this in c#?
or space:
Do While Asc(Selection.Text) = 32 Or Asc(Selection.Text) =
13
Selection.MoveLeft(Unit:=Word.WdUnits.wdCharacter,
Count:=1)
intCount = intCount + 1
Loop
How do I accomplish this in c#?