Class PvGenParameterList
Class used to hold a group of PvGenParameter pointers.
Implements
Inherited Members
Namespace: eBUSDotNet
Assembly: eBUSDotNet.dll
Syntax
public class PvGenParameterList : IDisposable
Constructors
View SourcePvGenParameterList()
Constructor
Declaration
public PvGenParameterList()
Fields
View SourceswigCMemOwn
Determines who is responsible for deleting the underlying C++ object.
Declaration
protected bool swigCMemOwn
Field Value
| Type | Description |
|---|---|
| bool |
Properties
View SourcePvSize
Gets the number of parameters in the list.
Declaration
public uint PvSize { get; }
Property Value
| Type | Description |
|---|---|
| uint |
Methods
View SourceAdd(PvGenParameter)
Adds an item to the parameter list.
Declaration
public void Add(PvGenParameter aParameter)
Parameters
| Type | Name | Description |
|---|---|---|
| PvGenParameter | aParameter | The PvGenParameter pointer to add to the list. |
Clear()
Clears the parameter list
Declaration
public void Clear()
Dispose()
Dispose.
Declaration
public void Dispose()
Dispose(bool)
Dispose
Declaration
protected virtual void Dispose(bool disposing)
Parameters
| Type | Name | Description |
|---|---|---|
| bool | disposing |
~PvGenParameterList()
Destructor.
Declaration
protected ~PvGenParameterList()
GetFirst()
Returns the first item of the list.
Declaration
public PvGenParameter GetFirst()
Returns
| Type | Description |
|---|---|
| PvGenParameter | Pointer to the first item in the list, NULL if the list is empty. |
GetItem(uint)
Returns a specific item from the list.
Declaration
public PvGenParameter GetItem(uint aIndex)
Parameters
| Type | Name | Description |
|---|---|---|
| uint | aIndex | of the item to get. |
Returns
| Type | Description |
|---|---|
| PvGenParameter | Index of the requested PvGenParameter pointer. |
GetNext()
Returns the next item in the list.
Declaration
public PvGenParameter GetNext()
Returns
| Type | Description |
|---|---|
| PvGenParameter | Pointer to the next item in the list. NULL if the end of the list is reached. |