N
Nuno Magalhaes
How can I change the text font and other properties through the SetProperty method?
I have this code:
oActiveDoc.AttachDispatch(oWord.get_ActiveDocument());
Selection oSel;
oSel.AttachDispatch(oWord.get_Selection());
oSel.InsertAfter("Example text.");
oSel.SetProperty(DISPID dwDispID,VARTYPE vt); <-----------
Is there any specification about the properties and about office sdk in general?
Thanks in advance.
I have this code:
oActiveDoc.AttachDispatch(oWord.get_ActiveDocument());
Selection oSel;
oSel.AttachDispatch(oWord.get_Selection());
oSel.InsertAfter("Example text.");
oSel.SetProperty(DISPID dwDispID,VARTYPE vt); <-----------
Is there any specification about the properties and about office sdk in general?
Thanks in advance.