Namespace: GameEngine.Attributes
Class: GameEngine/Attributes/ArcGISPointCloudAttributeImmutableCollection
Since: 2.4.0
Summary
An immutable collection of ArcGISPointCloudAttribute objects.
Properties
Methods
| Signature | Return Type | Summary |
|---|---|---|
Gets the value at the specified position. | ||
Determines if the vector contains the specified value. | ||
First() | Get the first value in the vector. | |
Retrieves the position of the given value in the vector. | ||
IsEmpty() | Determines if the vector contains values. | |
Last() | Get the last value in the vector. | |
Npos() | Returns a value indicating a bad position within the vector. |
At
ArcGISPointCloudAttribute At(ulong position)
Gets the value at the specified position.
Since 2.4.0
Arguments
| Name | Type | Summary |
|---|---|---|
position | ulong | The position at which to get the value. |
Returns ArcGISPointCloudAttribute
The ArcGISPointCloudAttribute at the specified position.
Contains
bool Contains(ArcGISPointCloudAttribute value)
Determines if the vector contains the specified value.
Since 2.4.0
Arguments
| Name | Type | Summary |
|---|---|---|
value | ArcGISPointCloudAttribute | The value to find. |
Returns bool
True if the value is in the vector, otherwise false.
First
ArcGISPointCloudAttribute First()
Get the first value in the vector.
Since 2.4.0
Returns ArcGISPointCloudAttribute
The ArcGISPointCloudAttribute at the specified position.
IndexOf
ulong IndexOf(ArcGISPointCloudAttribute value)
Retrieves the position of the given value in the vector.
Since 2.4.0
Arguments
| Name | Type | Summary |
|---|---|---|
value | ArcGISPointCloudAttribute | The value to find. |
Returns ulong
The position of the value in the vector, Max value of size_t otherwise.
IsEmpty
bool IsEmpty()
Determines if the vector contains values.
Since 2.4.0
Returns bool
True if the vector object contains no values, otherwise false. Returns true if an error occurs.
Last
ArcGISPointCloudAttribute Last()
Get the last value in the vector.
Since 2.4.0
Returns ArcGISPointCloudAttribute
The ArcGISPointCloudAttribute at the specified position.