Interface IOverlappingCellProvider
A provider for Overlapping Cell. GridOverlappingCellInfoCollection is a default implementation of this interface. The VirtualizingCellsControl retrieves Overlapping Cell through this interface from it OverlappingCellsProvider
Namespace: Syncfusion.Windows.Controls.Cells
Assembly: Syncfusion.GridCommon.WPF.dll
Syntax
public interface IOverlappingCellProvider
Properties
IsEmpty
Gets a value indicating if the collection is empty.
Declaration
bool IsEmpty { get; }
Property Value
Type |
---|
System.Boolean |
Methods
GetOverlappingCell(Int32, Int32)
Gets the Overlapping Cell.
Declaration
OverlappingCellInfo GetOverlappingCell(int rowIndex, int columnIndex)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | rowIndex | Index of the row. |
System.Int32 | columnIndex | Index of the column. |
Returns
Type |
---|
OverlappingCellInfo |