I am using MATLAB to paste and caption plots into Microsoft Word. I would like to also crop these images using the ActiveX control.
something like:
word = actxserver('Word.Application')
word.Visible = 1
op = invoke(word.Documents,'Add')
invoke(word.Selection,'Paste')
invoke(word.Selection,'CropBottom',CropAmount) <----- Except there is no function that will allow me to crop.
I am modifying the MATLAB File Exchange "save2word.m"
Thanks