Range.GetRangesByLines Method (Regex)

T3000 CrossPlatform

RangeGetRangesByLines Method (Regex)

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

Finds ranges for given regex. Search is separately in each line. 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> GetRangesByLines(
	Regex regex
)
Public Function GetRangesByLines ( 
	regex As Regex
) As IEnumerable(Of Range)

Dim instance As Range
Dim regex As Regex
Dim returnValue As IEnumerable(Of Range)

returnValue = instance.GetRangesByLines(regex)

Parameters

regex
Type: System.Text.RegularExpressionsRegex
Regex

Return Value

Type: IEnumerableRange
Enumeration of ranges
See Also