IList
Overview
List interface.
Location
- Reference: Island.fx
- Namespace: RemObjects.Elements.System
- Ancestry: ICollection | IList
Add
method Add(val: Object)
void Add(Object val)
func Add(_ val: Object)
void Add(Object val)
Sub Add(val As Object)
Parameters:
- val:
Clear
method Clear
void Clear()
func Clear()
void Clear()
Sub Clear()
Contains
returns true if this list contains this value.
Parameters:
- val:
Count (declared in ICollection)
Contains the number of elements.
property Count: Int32 read;
Int32 Count { get; }
var Count: Int32 { get{} }
Int32 Count { __get; }
ReadOnly Property Count() As Int32
GetEnumerator (declared in IEnumerable)
Returns the enumerable.
method GetEnumerator: IEnumerator
IEnumerator GetEnumerator()
func GetEnumerator() -> IEnumerator
IEnumerator GetEnumerator()
Function GetEnumerator() As IEnumerator
Item
Access a value by index.
Remove
removes an item from list, implementations that don't support this should throw.
Parameters:
- val:
Count (declared in ICollection)
Contains the number of elements.
property Count: Int32 read;
Int32 Count { get; }
var Count: Int32 { get{} }
Int32 Count { __get; }
ReadOnly Property Count() As Int32
Item
Access a value by index.
Add
method Add(val: Object)
void Add(Object val)
func Add(_ val: Object)
void Add(Object val)
Sub Add(val As Object)
Parameters:
- val:
Clear
method Clear
void Clear()
func Clear()
void Clear()
Sub Clear()
Contains
returns true if this list contains this value.
Parameters:
- val:
GetEnumerator (declared in IEnumerable)
Returns the enumerable.
method GetEnumerator: IEnumerator
IEnumerator GetEnumerator()
func GetEnumerator() -> IEnumerator
IEnumerator GetEnumerator()
Function GetEnumerator() As IEnumerator
Remove
removes an item from list, implementations that don't support this should throw.
Parameters:
- val: