J
Jay
I want to add a new paragraph to the end of the document, then change the font size of the preceding
paragraph, then add a table after the new last paragraph.
I've done this before using the selection object, but would like instead to use the range object.
How do I 'locate' the last paragraph?
Very bad pseudo-code:
MyDoc.Range(end, end) = Add_New_Paragraph
MyDoc.Range(end-1, end-1).Font.Size = 1
MyDoc.Range.Tables.Add Range(end, end), NumColumns:=?, NumRows:=?
paragraph, then add a table after the new last paragraph.
I've done this before using the selection object, but would like instead to use the range object.
How do I 'locate' the last paragraph?
Very bad pseudo-code:
MyDoc.Range(end, end) = Add_New_Paragraph
MyDoc.Range(end-1, end-1).Font.Size = 1
MyDoc.Range.Tables.Add Range(end, end), NumColumns:=?, NumRows:=?