PointList Class¶
Namespace: id3.Devices
Definition¶
Represents a point list.
class PointList
class PointList implements Finalizable
public partial class PointList
public class PointList implements AutoCloseable, Serializable
typedef struct id3DevicesPointList *ID3_DEVICES_POINT_LIST;
Usage¶
pointListInstance = PointList()
# ...
Explicit destruction
# ...
del pointListInstance
final pointListInstance = sdk.PointList();
// ...
Explicit destruction
// ...
pointListInstance.dispose()
using (var pointListInstance = new PointList())
{
// ...
}
Explicit destruction
var pointListInstance = new PointList()
// ...
pointListInstance.Dispose()
try (PointList pointListInstance = new PointList()) {
// ...
}
Explicit destruction
PointList pointListInstance = new PointList();
// ...
pointListInstance.close();
ID3_DEVICES_POINT_LIST hPointList{};
int err = id3DevicesPointList_Initialize(&hPointList);
if (err == ID3_SUCCESS) {
// ...
id3DevicesPointList_Dispose(&hPointList);
}
Properties¶
Iteration¶
This class supports iteration in Dart, C#, Java and Python.
Methods¶
Name |
Description |
---|---|
Adds an item to the PointList object. |
|
Clears the PointList object. |
|
Clones the PointList object. |
|
Gets an item of the PointList object. |
|
Gets the number of elements in the PointList object. |
|
Removes an element of the PointList object. |
|
PointList object. |
|
Sets an item of the PointList object. |