Displaying 1 result from an estimated 1 matches for "addshap".
Did you mean:
addshar
2010 Aug 13
1
RDCOMClient interface - problems setting a variable
...OMCreate("PowerPoint.Application") # create a ppt COM
ppt[["Visible"]] <- TRUE # set COM property visible to TRUE
pres = ppt$Presentations()$Add() # add a presentation
slide <- pres$Slides()$Add(1,1) # add slide to presentation
shape1 <- slide$Shapes()$AddShape(92, 200, 200, 100, 100) # add a shape object
shape1$Adjustments()$Item(1) # read adjustment parameter
How can I change this setting now? Taking a look at the functions available it shows that there are two item() functions - a getter and a setter, but have the same name.
names(getFuncs(shap...