Interface IClusteredGraph
Represents a graph cluster.
Namespace: QuikGraph
Assembly: QuikGraph.dll
Syntax
public interface IClusteredGraph
Properties
| Improve this Doc View SourceClusters
Graph clusters.
Declaration
IEnumerable Clusters { get; }
Property Value
| Type | Description |
|---|---|
| System.Collections.IEnumerable |
ClustersCount
Number of clusters.
Declaration
int ClustersCount { get; }
Property Value
| Type | Description |
|---|---|
| System.Int32 |
Collapsed
Gets or sets the collapse state of this cluster.
Declaration
bool Collapsed { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Boolean |
Methods
| Improve this Doc View SourceAddCluster()
Adds a new cluster.
Declaration
IClusteredGraph AddCluster()
Returns
| Type | Description |
|---|---|
| IClusteredGraph | The added cluster. |
RemoveCluster(IClusteredGraph)
Removes the given graph from this cluster.
Declaration
void RemoveCluster(IClusteredGraph graph)
Parameters
| Type | Name | Description |
|---|---|---|
| IClusteredGraph | graph | The graph. |
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentNullException |
|