Interface ICellSpanBackgroundsProvider
A provider for cell span backgrounds. GridCellSpanBackgroundInfoCollection is a default implementation of this interface. The VirtualizingCellsControl retrieves cell span backgrounds through this interface from it CellSpanBackgroundsProvider
Namespace: Syncfusion.Windows.Controls.Cells
Assembly: Syncfusion.GridCommon.WPF.dll
Syntax
public interface ICellSpanBackgroundsProvider
Properties
IsEmpty
Gets a value indicating if the collection is empty.
Declaration
bool IsEmpty { get; }
Property Value
Type |
---|
System.Boolean |
Methods
GetCellSpanBackgrounds(Int32, Int32)
Gets the cell span backgrounds that include the specified cells row and column index.
Declaration
List<CellSpanBackgroundInfo> GetCellSpanBackgrounds(int rowIndex, int columnIndex)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | rowIndex | Index of the row. |
System.Int32 | columnIndex | Index of the column. |
Returns
Type |
---|
System.Collections.Generic.List<CellSpanBackgroundInfo> |