| WrdCellRange {DescTools} | R Documentation |
Return a handle of a cell range of a word table. This is useful for formating the cell range.
WrdCellRange(wtab, rstart, rend)
wtab |
a handle to the word table as returned i.g. by |
rstart |
the left/upper cell of the cell range. |
rend |
the right/lower cell of the cell range. |
Cell range selecting might be complicated. This function makes it easy.
a handle to the range.
Andri Signorell <andri@signorell.net>
## Not run: # Windows-specific example wrd <- GetNewWrd() WrdTable(nrow=3, ncol=3, wrd=wrd) crng <- WrdCellRange(rstart=c(1,2), rend=c(2,3)) crng$Select() ## End(Not run)