LinedFlowLayoutItemsInfoRequestedEventArgs.ItemsRangeStartIndex Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the start of the item range with sizing information.
public:
property int ItemsRangeStartIndex { int get(); void set(int value); };
int ItemsRangeStartIndex();
void ItemsRangeStartIndex(int value);
public int ItemsRangeStartIndex { get; set; }
var int32 = linedFlowLayoutItemsInfoRequestedEventArgs.itemsRangeStartIndex;
linedFlowLayoutItemsInfoRequestedEventArgs.itemsRangeStartIndex = int32;
Public Property ItemsRangeStartIndex As Integer
Property Value
int
The index of the first item for which sizing information is requested.
Remarks
The requested range starts at index ItemsRangeStartIndex
and ends at index ItemsRangeStartIndex
+ ItemsRangeRequestedLength
- 1.
If sizing information is available for a larger range than the requested one, this property can be updated with a smaller value that indicates the actual start of the provided range. The new value must be greater than or equal to 0.