setNodeWidthDirectR Documentation

setNodeWidthDirect

Description

In the specified CytoscapeWindow, set the width of the specified node. Not that the node dimensions (width and width) must be unlocked for this to work. If they ARE locked, then node and width change together, as specified by a node size rule, or the setNodeSize method

Usage

setNodeWidthDirect(obj, node.names, new.width)

Arguments

obj a CytoscapeWindowClass object.
node.names a String object.
new.width an integer, in pixel units.

Value

None.

Author(s)

Paul Shannon

See Also

setNodeWidthRule lockNodeDimensions setNodeSizeDirect setNodeHeightDirect

Examples

  cw <- new.CytoscapeWindow ('setNodeWidthDirect.test', graph=makeSimpleGraph())
  displayGraph (cw)
  redraw (cw)
  layoutNetwork (cw, 'jgraph-spring')
  lockNodeDimensions (cw, 'default', FALSE)
  setNodeWidthDirect (cw, 'A', 32)
  redraw (cw)