How to export Word Range as RTF using VBA
Save Selected Word Range as RTF using Word VBA
The following snippet saves the selected Range as RTF using VBA (Word 2007)
Sub Export_Selection_As_RTF()
Selection.Range.ExportFragment "C:\Users\comp\AppData\Local\Temp\Sample.rtf", wdFormatRTF
End Sub
- Login or register to post comments
- Feed: vbadb feed
- Original article
