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

« back to all changes in this revision

Viewing changes to man/gtkTreeViewInsertColumnWithAttributes.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{gtkTreeViewInsertColumnWithAttributes}
2
2
\name{gtkTreeViewInsertColumnWithAttributes}
3
3
\title{gtkTreeViewInsertColumnWithAttributes}
4
 
\description{Creates a new \verb{\link{GtkTreeViewColumn}} and inserts it into the \code{tree.view} at
 
4
\description{Creates a new \code{\link{GtkTreeViewColumn}} and inserts it into the \code{tree.view} at
5
5
\code{position}.  If \code{position} is -1, then the newly created column is inserted at
6
6
the end.  The column is initialized with the attributes given. If \code{tree.view}
7
7
has "fixed_height" mode enabled, then the new column will have its sizing
8
8
property set to be GTK_TREE_VIEW_COLUMN_FIXED.}
9
9
\usage{gtkTreeViewInsertColumnWithAttributes(object, position, title, cell, ...)}
10
10
\arguments{
11
 
\item{\verb{object}}{[\verb{\link{GtkTreeView}}]  A \verb{\link{GtkTreeView}}}
12
 
\item{\verb{position}}{[integer]  The position to insert the new column in.}
13
 
\item{\verb{title}}{[character]  The title to set the header to.}
14
 
\item{\verb{cell}}{[\verb{\link{GtkCellRenderer}}]  The \verb{\link{GtkCellRenderer}}.}
15
 
\item{\verb{...}}{ A list of attributes.}
 
11
\item{\verb{object}}{A \code{\link{GtkTreeView}}}
 
12
\item{\verb{position}}{The position to insert the new column in.}
 
13
\item{\verb{title}}{The title to set the header to.}
 
14
\item{\verb{cell}}{The \code{\link{GtkCellRenderer}}.}
 
15
\item{\verb{...}}{A list of attributes.}
16
16
}
17
17
\value{[integer]  The number of columns in \code{tree.view} after insertion.}
18
18
\author{Derived by RGtkGen from GTK+ documentation}