ClassRowsColumnsBase
Abstract base class for row and column collections, providing shared insertion, removal, and property management functionality.
Definition
Namespace:Telerik.Windows.Documents.Spreadsheet.Model
Assembly:Telerik.Windows.Documents.Spreadsheet.dll
Syntax:
public abstract class RowsColumnsBase : WorksheetEntityBase
Inheritance: objectWorksheetEntityBaseRowsColumnsBase
Derived Classes:
Inherited Members
Properties
Cells
Gets the worksheet's cell collection for coordinating row/column operations with cell data.
Methods
CanInsert(int, int)
Checks whether the specified number of rows or columns can be inserted at the given index without exceeding worksheet capacity.
Insert(int)
Inserts a single row or column at the specified index, shifting subsequent items.
Insert(int, int)
Inserts the specified number of rows or columns at the given index, shifting subsequent items.
InsertOverride(int, int)
Executes the derived class-specific insertion logic at the specified index.
Remove(int)
Removes a single row or column at the specified index, shifting remaining items.
Remove(int, int)
Removes the specified number of rows or columns starting at the given index, shifting remaining items.
RemoveOverride(int, int)
Executes the derived class-specific removal logic at the specified index.