Table of Contents

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

Item object

The data source item being dragged retrieved from the adapter in the corresponding drag position.

SectionIndex int

The section index for the item.

ItemIndex int

The 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

object

ItemIndex

The item index for the item.

public int ItemIndex { get; init; }

Property Value

int

SectionIndex

The section index for the item.

public int SectionIndex { get; init; }

Property Value

int