[[<-.COMObject {rcom} | R Documentation |
Writes one of the COM object's properties.
## S3 method for class 'COMObject': handle[[property,...]]<-value
handle |
COM object (class "COMObject") as returned by e.g.
comCreateObject |
property |
name of property to get as a character string |
... |
optional additional arguments for property specification (e.g. index for an array) |
value |
the value the property should be set to |
The return value is the object handle.
Gabor Grothendieck
# start up excel ## Not run: x<-comCreateObject("Excel.Application") # and make it visible ## Not run: x[["Visible"]] <- TRUE;