Learn R Programming

consort (version 1.2.2)

move_box: Move a box grob

Description

This function can be used to move the box to a given position with editGrob changing the x and y value.

Usage

move_box(obj, x = NULL, y = NULL, pos_type = c("absolute", "relative"))

Value

A box object with updated x and y coordinates.

Arguments

obj

A box object.

x

A unit element or a number that can be converted to npc, see unit.

y

A unit element or a number that can be converted to npc, see unit.

pos_type

If the provided coordinates are absolute position the box will be moved to or it's a relative position to it's current.

Examples

Run this code
fg <- textbox(text = "This is a test")
fg2 <- move_box(fg, 0.3, 0.3)

Run the code above in your browser using DataLab