~ubuntu-branches/ubuntu/trusty/rgtk2/trusty

« back to all changes in this revision

Viewing changes to man/gtkComboSetValueInList.Rd

  • Committer: Bazaar Package Importer
  • Author(s): Dirk Eddelbuettel
  • Date: 2010-11-03 11:35:46 UTC
  • mfrom: (1.3.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20101103113546-a7fi7jdxdebp0tw1
Tags: 2.20.1-1
* New upstream release

* debian/control: Set (Build-)Depends: to current R version
* debian/control: Set Standards-Version: to current version 

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
Specifies whether the value entered in the text entry field must match one of
6
6
the values in the list. If this is set then the user will not be able to
7
7
perform any other action until a valid value has been entered.
8
 
\strong{WARNING: \code{gtk_combo_set_value_in_list} has been deprecated since version 2.4 and should not be used in newly-written code. Use \verb{\link{GtkComboBox}} instead.}
 
8
\strong{WARNING: \code{gtk_combo_set_value_in_list} has been deprecated since version 2.4 and should not be used in newly-written code. Use \code{\link{GtkComboBox}} instead.}
9
9
}
10
10
\usage{gtkComboSetValueInList(object, val, ok.if.empty)}
11
11
\arguments{
12
 
\item{\verb{object}}{[\verb{\link{GtkCombo}}] a \verb{\link{GtkCombo}}.}
13
 
\item{\verb{val}}{[logical] \code{TRUE} if the value entered must match one of the values in the list.}
14
 
\item{\verb{ok.if.empty}}{[logical] \code{TRUE} if an empty value is considered valid.}
 
12
\item{\verb{object}}{a \code{\link{GtkCombo}}.}
 
13
\item{\verb{val}}{\code{TRUE} if the value entered must match one of the values in the list.}
 
14
\item{\verb{ok.if.empty}}{\code{TRUE} if an empty value is considered valid.}
15
15
}
16
16
\details{If an empty field is acceptable, the \code{ok.if.empty} parameter should be \code{TRUE}.}
17
17
\author{Derived by RGtkGen from GTK+ documentation}