powered by
The functions gEdit and gEditList create objects representing an edit operation (essentially a list of arguments to editGrob).
gEdit
gEditList
editGrob
The functions applyEdit and applyEdits apply one or more edit operations to a graphical object.
applyEdit
applyEdits
These functions are most useful for developers creating new graphical functions and objects.
gEdit(...) gEditList(...) applyEdit(x, edit) applyEdits(x, edits)
one or more arguments to the editGrob function (for gEdit) or one or more "gEdit" objects (for gEditList).
"gEdit"
a grob (grid graphical object).
a "gEdit" object.
either a "gEdit" object or a "gEditList" object.
"gEditList"
gEdit returns an object of class "gEdit".
gEditList returns an object of class "gEditList".
applyEdit and applyEditList return the modified grob.
applyEditList
grob editGrob
grob
# NOT RUN { grid.rect(gp=gpar(col="red")) # same thing, but more verbose grid.draw(applyEdit(rectGrob(), gEdit(gp=gpar(col="red")))) # }
Run the code above in your browser using DataLab