Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Struct: RT.Coordinates.CombinedCell<TCell>

Summary

Describes a cell in a grid that is a combination (merger) of multiple cells behaving as one.

Generic type parameters

TCell Type of the underlying cells.

Remarks

See Structure<TCell>.CombineCells(params TCell[]) for a code example.

Constructors

CombinedCell<TCell>(params TCell[] cells)
Constructs a combined cell from a specified collection of cells.
CombinedCell<TCell>(IEnumerable<TCell> cells)
CombinedCell<TCell>(TCell singleCell)
Constructs a CombinedCell<TCell> structure consisting of a single cell.

Instance methods

bool
Contains(TCell cell)
Determines whether the specified cell is one of the underlying cell of this combined cell.
bool
Equals(CombinedCell<TCell> other)
Refer to the documentation for IEquatable<CombinedCell<TCell>>.Equals.
bool
Equals(object obj)
  • Overrides: object.Equals(object)
Refer to the documentation for object.Equals.
IEnumerator<TCell>
  • Implements: IEnumerable<TCell>.GetEnumerator()
Refer to the documentation for IEnumerable<TCell>.GetEnumerator.
int
  • Overrides: object.GetHashCode()
Refer to the documentation for object.GetHashCode.
string
  • Overrides: object.ToString()
Refer to the documentation for object.ToString.

Instance properties

PointDRefer to the documentation for IHasSvgGeometry.Center.
intReturns the number of underlying cells.
IEnumerable<Link<Vertex>>Refer to the documentation for IHasSvgGeometry.Edges.