Interface IAimpObjectList
Interface IAimpObjectList
Namespace: AIMP.SDK
Assembly: AIMP.SDK.dll
Syntax
public interface IAimpObjectList
Properties
Count
Gets the count.
Declaration
int Count { get; }
Methods
Add(Object)
Adds an item to the collection.
Declaration
AimpActionResult Add(object entry)
Parameters
Type | Name | Description |
---|---|---|
System.Object | entry | The object to add to the collection. |
Clear()
Removes all items from the list.
Declaration
AimpActionResult Clear()
Delete(Int32)
Removes the item at the specified index.
Declaration
AimpActionResult Delete(int index)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | The zero-based index of the item to remove. |
GetObject(Int32, out Object)
Gets the element at the specified index.
Declaration
AimpActionResult GetObject(int index, out object item)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | The zero-based index of the element to get. |
System.Object | item | The item at specified |
Insert(Int32, Object)
Inserts an item to the collection at the specified index.
Declaration
AimpActionResult Insert(int index, object item)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | The zero-based index at which |
System.Object | item | The object to insert into the collection. |
SetObject(Int32, Object)
Sets the element at the specified index.
Declaration
AimpActionResult SetObject(int index, object item)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | The zero-based index of the element to set. |
System.Object | item | The item to set. |