LineGeometryCollection.Slice Methods
This element is not available using the selected API.
This element is not available using the selected API.
In this article
This element is not available using the selected API.
In this article
This element is not available using the selected API.
In this article
Returns a slice of the collection.
If the instance that this method is a member of is part of a Feature that has been inserted into a MemoryDataSet then you must use the Guard class to lock the dataset that the Feature belongs to before you call this method.
More information about thread safety of objects in a dataset can be found in Threading Model, datasets and features.
Name | Description | |
---|---|---|
Public method | slice() | Returns the whole collection as a slice. |
Public method | slice(i, j) | Returns the elements in the specified range as a slice. |
Public method | slice(i, j, k) | Not supported. Returns the elements in the specified range and step-size as a slice. |
[:]
[i:j]
[i:j:k]
This operation is not supported on Carmenta Engine collections but you can convert the collection to a Python sequence and use the default Python slice operation. However, the Python sequence will be a copy and any changes to it will not be reflected in the original Carmenta Engine collection.
Windows, Linux, Android
In this article