Range.GetRangesByLinesReversed Method

T3000 CrossPlatform

RangeGetRangesByLinesReversed Method

[This is preliminary documentation and is subject to change.]

Finds ranges for given regex pattern. Search is separately in each line (order of lines is reversed). This method requires less memory than GetRanges().

Namespace:  FastColoredTextBoxNS
Assembly:  FastColoredTextBox (in FastColoredTextBox.dll) Version: 2.16.23.0 (2.16.23.0)
Syntax
public IEnumerable<Range> GetRangesByLinesReversed(
	string regexPattern,
	RegexOptions options
)
Public Function GetRangesByLinesReversed ( 
	regexPattern As String,
	options As RegexOptions
) As IEnumerable(Of Range)

Dim instance As Range
Dim regexPattern As String
Dim options As RegexOptions
Dim returnValue As IEnumerable(Of Range)

returnValue = instance.GetRangesByLinesReversed(regexPattern, 
	options)

Parameters

regexPattern
Type: SystemString
Regex pattern
options
Type: System.Text.RegularExpressionsRegexOptions

[Missing <param name="options"/> documentation for "M:FastColoredTextBoxNS.Range.GetRangesByLinesReversed(System.String,System.Text.RegularExpressions.RegexOptions)"]

Return Value

Type: IEnumerableRange
Enumeration of ranges
See Also