Ciao all
i wish to know if is possible to set a vertical line spacing between 2 lines in a Word file
Example, to write in a Word file i do:
oWord := CREATEOBJECT( "Word.Application" )
...
...
oSel = oWord:Selection
...
...
oSel:Font:Size:=14
oSel:Font:Bold:=.t.
oSel:Font:Color:=CLR_RED
oSel:Font:name:="Nome Font"
oSel:TypeText("Descrizione Riga 1"+CRLF)
oSel:TypeText("Descrizione Riga 2"+CRLF)
It words well, but the second line has too space from first line !!
Is is possible to set it ? How ?
Many thanks
Romeo