Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Extension method: Structure<CombinedCell<TCell>> CombineCells<TCell>(this Structure<CombinedCell<TCell>>, IEnumerable<TCell>)

Declaration

public static Structure<CombinedCell<TCell>> CombineCells<TCell>(
    this Structure<CombinedCell<TCell>> structure,
    IEnumerable<TCell> cells
)

Summary

Returns a new structure in which the specified set of cells is combined (merged) into a single cell.

Generic type parameters

TCellThis type parameter is not documented.

Parameters

this Structure<CombinedCell<TCell>>structure Structure to operate upon.
IEnumerable<TCell>cells Set of cells to combine into one.

Exceptions

  • System.InvalidOperationException
    One of the cells in cells has already been combined with other cells within this structure.

Remarks

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