FlexCell: Cell object for FlexTable

Description Usage Arguments See Also Examples

View source: R/FlexCell.R

Description

Create a representation of a cell that can be inserted in a FlexRow. For internal usage.

Usage

1
2
FlexCell(value, colspan = 1, par.properties = parProperties(),
  cell.properties = cellProperties())

Arguments

value

a content value - a value of type character or pot or set_of_paragraphs.

colspan

defines the number of columns the cell should span

par.properties

parProperties to apply to content

cell.properties

cellProperties to apply to content

See Also

addFlexTable, addHeaderRow, addFooterRow

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
FlexCell( value = "Hello" )
FlexCell( value = "Hello", colspan = 3)
FlexCell( "Column 1",
	cell.properties = cellProperties(background.color="#527578")  )

# define a complex formatted text
mytext <- pot("Hello", format = textProperties(color = "blue") ) +
  " " +
  pot( "world", format = textProperties(font.size = 9) )
Fcell = FlexCell( mytext, colspan = 4 )

# define two paragraph and put them in a FlexCell
mytext1 <- pot("Hello", format = textProperties(color = "blue") )
mytext2 <- pot( "world", format = textProperties(font.size = 9) )
Fcell <- FlexCell( set_of_paragraphs( mytext1, mytext2 ) )

ReporteRs documentation built on April 1, 2018, 12:06 p.m.