Gets a word at specified index.

Namespace: Sgry.Azuki
Assembly: Azuki (in Azuki.dll) Version: 1.7.13.40248

Syntax

C#
public string GetWordAt(
	int index,
	out int begin,
	out int end
)
Visual Basic
Public Function GetWordAt ( 
	index As Integer,
	<OutAttribute> ByRef begin As Integer,
	<OutAttribute> ByRef end As Integer
) As String

Parameters

index
Type: System..::..Int32
The word at this index will be retrieved.
begin
Type: System..::..Int32%
The index of the char which starts the word.
end
Type: System..::..Int32%
The index of where the word ends.

Return Value

Type: String

Exceptions

ExceptionCondition
System..::..ArgumentOutOfRangeExceptionSpecified index is out of valid range.

See Also