NumberListRemoveValue Method for LCStream
This method removes a value at a specified position from a number list LCStream object.
The stream must be in the LCSTREAMFMT_NUMBER_LIST format.
Defined In
LCStream
Syntax
Call lcStream. NumberListRemoveValue (index)
Parameters
Parameter |
Description |
---|---|
index |
Long, in the range 1 to lcStream.Valuecount. The position of the value to remove. |
Usage Notes®
Number list streams can contain a mixture of single number values and number ranges (as shown in the example). This method scans the list starting with the first element, searching for range values and counting them. Once the count reaches index, the range value at that position is returned. If the list contains a mixture, this might not be the indexth value in the list.
Example
Option Public
Uselsx "*lsxlc"
Sub Initialize
Dim numlist As New LCStream (0, 0, LCSTREAMFMT_NUMBER_LIST)
numlist.Text = "1.11, 22.2, 50-55, 33, 4.444, 66, 77-79"
Call numlist.NumberListRemoveValue (3)
Print "The new stream is " & numlist.Text
End Sub
Example Output
The new stream is 1.11, 22.2, 4.444, 66, 50 - 55, 77 - 79