ghtml {gWidgetsWWW2} | R Documentation |
widget to render HTML text pages
ghtml(x, container = NULL, ..., width = NULL, height = NULL, ext.args = NULL)
x |
an HTML string or a URL. |
container |
parent container |
... |
passed to add method of parent container |
width |
width of widge in pixels |
height |
height of widget in pixels |
ext.args |
extra arguments to pass to constructor |
an ExtWidget
object
w <- gwindow() g <- ggroup(cont=w, horizontal=FALSE) h <- ghtml("<b>this is bold</b>", cont=g)