GeneratorPosition(Int32, Int32) Constructor
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.
Initializes a new instance of GeneratorPosition with the specified index and offset.
public:
GeneratorPosition(int index, int offset);
public GeneratorPosition (int index, int offset);
new Windows.UI.Xaml.Controls.Primitives.GeneratorPosition : int * int -> Windows.UI.Xaml.Controls.Primitives.GeneratorPosition
Public Sub New (index As Integer, offset As Integer)
Parameters
- index
- Int32
An index that is relative to the generated (realized) items. -1 is a special value that refers to a fictitious item at the beginning or the end of the items list.
- offset
- Int32
An offset that is relative to the ungenerated (unrealized) items near the indexed item. An offset of 0 refers to the indexed element itself, an offset of 1 refers to the next ungenerated (unrealized) item, and an offset of -1 refers to the previous item.
Remarks
This struct represents the .NET projection of the Windows Runtime (WinRT) GeneratorPosition
struct. For more information, see GeneratorPosition in the UWP API reference.