Struct VirtualScrollDragInfo
- Namespace
- Nalu
- Assembly
- Nalu.Maui.VirtualScroll.dll
Information about a drag operation in a VirtualScroll.
public readonly record struct VirtualScrollDragInfo : IEquatable<VirtualScrollDragInfo>
- Implements
- Inherited Members
Constructors
VirtualScrollDragInfo(object?, int, int)
Information about a drag operation in a VirtualScroll.
public VirtualScrollDragInfo(object? Item, int SectionIndex, int ItemIndex)
Parameters
ItemobjectThe data source item being dragged retrieved from the adapter in the corresponding drag position.
SectionIndexintThe section index for the item.
ItemIndexintThe item index for the item.
Properties
Item
The data source item being dragged retrieved from the adapter in the corresponding drag position.
public object? Item { get; init; }
Property Value
ItemIndex
The item index for the item.
public int ItemIndex { get; init; }
Property Value
SectionIndex
The section index for the item.
public int SectionIndex { get; init; }