Returns an array of TermVectorOffsetInfo in which the term is found. May return null if offsets have not been stored.

Namespace: Lucene.Net.Index
Assembly: Lucene.Net (in Lucene.Net.dll) Version: 2.9.4.1

Syntax

C#
TermVectorOffsetInfo[] GetOffsets(
	int index
)
Visual Basic
Function GetOffsets ( _
	index As Integer _
) As TermVectorOffsetInfo()
Visual C++
array<TermVectorOffsetInfo^>^ GetOffsets(
	int index
)

Parameters

index
Type: System..::..Int32
The position in the array to get the offsets from

Return Value

An array of TermVectorOffsetInfo objects or the empty list

See Also