GeneratorPosition(Int32, Int32) 构造函数

定义

使用指定的索引和偏移量初始化 GeneratorPosition 的新实例。

public:
 GeneratorPosition(int index, int offset);
public GeneratorPosition (int index, int offset);
new System.Windows.Controls.Primitives.GeneratorPosition : int * int -> System.Windows.Controls.Primitives.GeneratorPosition
Public Sub New (index As Integer, offset As Integer)

参数

index
Int32

与已生成(已实现)项相关的 Int32 索引。 -1 是表示项列表的开头或结尾处虚拟项的特殊值。

offset
Int32

与已索引项旁未生成(未实现)项相关的 Int32 偏移量。 偏移量为 0 表示已索引元素本身;偏移量为 1 表示下一未生成(未实现)项;偏移量为 -1 表示前一项。

适用于