Displaying 1 result from an estimated 1 matches for "increaseindent".
Did you mean:
  decreaseindent
  
2012 Oct 11
2
struggling with R2wd or SWord? Try rtf!
..."This text was added with the startParagraph() and addText() 
functions.  You can insert ")
addText(rtf, "styled ", bold=TRUE, italic=TRUE)
addText(rtf, "text this way.  But, you must end the paragraph manually 
with the endParagraph() function.\n")
endParagraph(rtf)
increaseIndent(rtf)
addParagraph(rtf, paste(rep("You can indent text with the increaseIndent() 
function.", 4), collapse="  "))
addNewLine(rtf)
decreaseIndent(rtf)
addParagraph(rtf, paste(rep("And remove the indent with the 
decreaseIndent() function.", 4), collapse="  ")...