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

« back to all changes in this revision

Viewing changes to man/gtkAdjustmentSetValue.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:
1
1
\alias{gtkAdjustmentSetValue}
2
2
\name{gtkAdjustmentSetValue}
3
3
\title{gtkAdjustmentSetValue}
4
 
\description{Sets the \verb{\link{GtkAdjustment}} value. The value is clamped to lie between
 
4
\description{Sets the \code{\link{GtkAdjustment}} value. The value is clamped to lie between
5
5
\code{adjustment->lower} and
6
6
\code{adjustment->upper}.}
7
7
\usage{gtkAdjustmentSetValue(object, value)}
8
8
\arguments{
9
 
\item{\verb{object}}{[\verb{\link{GtkAdjustment}}] a \verb{\link{GtkAdjustment}}.}
10
 
\item{\verb{value}}{[numeric] the new value.}
 
9
\item{\verb{object}}{a \code{\link{GtkAdjustment}}.}
 
10
\item{\verb{value}}{the new value.}
11
11
}
12
 
\details{Note that for adjustments which are used in a \verb{\link{GtkScrollbar}}, the effective
 
12
\details{Note that for adjustments which are used in a \code{\link{GtkScrollbar}}, the effective
13
13
range of allowed values goes from \code{adjustment->lower} to
14
14
\code{adjustment->upper - adjustment->page_size}.}
15
15
\author{Derived by RGtkGen from GTK+ documentation}