\name{getAllEdgeAttributes} \alias{getAllEdgeAttributes} \alias{getAllEdgeAttributes,CytoscapeWindowClass-method} \title{getAllEdgeAttributes} \description{ Create a data frame with all the edge attributes for the graph contained by the supplied CytoscapeWindow object. Only the local copy of the graph is queried. If you want all the (possibly different) edge attributes from the Cytoscape network which corresponds to this graph, one option is to create a new CytoscapeWindow; see the existing.CytoscapeWindow function. } \usage{ getAllEdgeAttributes(obj, onlySelectedEdges=FALSE) } \arguments{ \item{obj}{a \code{CytoscapeWindowClass} object object. } \item{onlySelectedEdges}{a \code{logical} variable, used to restrict the query.} } \value{ A data frame, with a column for each attribute, a row for each edge. } \author{Paul Shannon} \seealso{ getEdgeAttribute deleteEdgeAttribute getAllNodeAttributes } \examples{ window.name = 'demo.getAllEdgeAttributes' cw = new.CytoscapeWindow (window.name, graph=makeSimpleGraph ()) displayGraph (cw) redraw (cw) layoutNetwork(cw) # get all attributes for all edges tbl.noa = getAllEdgeAttributes (cw, onlySelectedEdges=FALSE) } \keyword{graph}