Method Slide
Slide(Int32)
Slide this list view along the underlying list.
Declaration
IList<T> Slide(int offset)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | offset | The signed amount to slide: positive to slide towards the end. |
Returns
Type | Description |
---|---|
IList<T> |
Exceptions
Type | Condition |
---|---|
NotAViewException | if this list is not a view. |
Slide(Int32, Int32)
Slide this list view along the underlying list, changing its size.
Declaration
IList<T> Slide(int offset, int size)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | offset | The signed amount to slide: positive to slide towards the end. |
System.Int32 | size | The new size of the view. |
Returns
Type | Description |
---|---|
IList<T> |
Exceptions
Type | Condition |
---|---|
NotAViewException | if this list is not a view. |