R/put_label.R

Defines functions put_label

put_label <- function(parent, text, row, column, sticky = "e") {
    label <- ttklabel(parent, text = text)
    tkgrid(label, row = row, column = column, sticky = sticky)
}
c0reyes/TextMiningGUI documentation built on April 25, 2021, 10:06 a.m.