Namespace: Esri::GameEngine::Layers::PointCloud
Class: Esri/GameEngine/Layers/PointCloud/ArcGISPointCloudColorUniqueValueCollection
Since: 2.4.0

Summary

Defines an collection of ArcGISPointCloudColorUniqueValue.

Constructors

ArcGISPointCloudColorUniqueValueCollection()

Creates a vector. This allocates memory that must be deleted.

Since 2.4.0

Properties

PropertyTypeNullableReadonlySummary
Sizesize_tNoYes

The number of values in the vector.

Size

size_t GetSize() const

The number of values in the vector.

If an error occurs, 0 will be returned.

Methods

SignatureReturn TypeSummary

Add(const ArcGISPointCloudColorUniqueValue&)

size_t

Add a value to the vector.

AddArray(const ArcGISCollection<ArcGISPointCloudColorUniqueValue>&)

size_t

Appends a vector to a vector.

At(size_t)

ArcGISPointCloudColorUniqueValue

Get a value at a specific position.

Contains(const ArcGISPointCloudColorUniqueValue&)

bool

Indicates if the vector contains the given value.

Equals(const ArcGISCollection<ArcGISPointCloudColorUniqueValue>&)

bool

Determines if two vectors are equal.

First()

ArcGISPointCloudColorUniqueValue

Get the first value in the vector.

IndexOf(const ArcGISPointCloudColorUniqueValue&)

size_t

Finds the position of the given value in the vector.

Insert(size_t, const ArcGISPointCloudColorUniqueValue&)

void

Insert the provided value at a specific position in the vector.

IsEmpty()

bool

Determines if there are any values in the vector.

Last()

ArcGISPointCloudColorUniqueValue

Get the last value in the vector.

Move(size_t, size_t)

void

Move a value from the current position to a new position in the vector.

Npos()

size_t

Returns a value indicating a bad position within the vector.

Remove(size_t)

void

Remove a value at a specific position in the vector.

RemoveAll()

void

Remove all values from the vector.

Add

Add a value to the vector.

Since 2.4.0

Arguments
NameTypeConstSummary
valueArcGISPointCloudColorUniqueValueYes

The value to add.

Returns size_t

The position of the value. Max value of size_t if an error occurs.

AddArray

size_t AddArray(const ArcGISCollection<ArcGISPointCloudColorUniqueValue>& vector2)

Appends a vector to a vector.

Since 2.4.0

Arguments
NameTypeConstSummary
vector2ArcGISCollection<ArcGISPointCloudColorUniqueValue>Yes

The value to add.

Returns size_t

The new size of vector_1. Max value of size_t if an error occurs.

At

Get a value at a specific position.

Since 2.4.0

Arguments
NameTypeConstSummary
positionsize_tNo

The position for which you want the value.

Returns ArcGISPointCloudColorUniqueValue

A ArcGISPointCloudColorUniqueValue representing the value at the specified position.

Contains

bool Contains(const ArcGISPointCloudColorUniqueValue& value) const

Indicates if the vector contains the given value.

Since 2.4.0

Arguments
NameTypeConstSummary
valueArcGISPointCloudColorUniqueValueYes

The value you want to find.

Returns bool

True if the value is in the vector otherwise false.

Equals

bool Equals(const ArcGISCollection<ArcGISPointCloudColorUniqueValue>& vector2) const

Determines if two vectors are equal.

Since 2.4.0

Arguments
NameTypeConstSummary
vector2ArcGISCollection<ArcGISPointCloudColorUniqueValue>Yes

The second vector.

Returns bool

True if the two vectors are equal, otherwise false.

First

Get the first value in the vector.

Since 2.4.0

Returns ArcGISPointCloudColorUniqueValue

A ArcGISPointCloudColorUniqueValue representing the value at the specified position.

IndexOf

size_t IndexOf(const ArcGISPointCloudColorUniqueValue& value) const

Finds the position of the given value in the vector.

Since 2.4.0

Arguments
NameTypeConstSummary
valueArcGISPointCloudColorUniqueValueYes

The value to find.

Returns size_t

The position of the value in the vector, Max value of size_t otherwise.

Insert

void Insert(size_t position, const ArcGISPointCloudColorUniqueValue& value)

Insert the provided value at a specific position in the vector.

Since 2.4.0

Arguments
NameTypeConstSummary
positionsize_tNo

The position at which to insert the given value.

valueArcGISPointCloudColorUniqueValueYes

The value to add.

Returns void

IsEmpty

bool IsEmpty() const

Determines if there are any values in the vector.

Since 2.4.0

Returns bool

True if the vector object contains no values, otherwise false. Returns true if an error occurs.

Last

Get the last value in the vector.

Since 2.4.0

Returns ArcGISPointCloudColorUniqueValue

A ArcGISPointCloudColorUniqueValue representing the value at the specified position.

Move

void Move(size_t oldPosition, size_t newPosition)

Move a value from the current position to a new position in the vector.

Since 2.4.0

Arguments
NameTypeConstSummary
oldPositionsize_tNo

The current position of the value.

newPositionsize_tNo

The position to which you want to move the value.

Returns void

Npos

static size_t Npos()

Returns a value indicating a bad position within the vector.

Since 2.4.0

Returns size_t

A size_t.

Remove

void Remove(size_t position)

Remove a value at a specific position in the vector.

Since 2.4.0

Arguments
NameTypeConstSummary
positionsize_tNo

The position where you want to remove the value.

Returns void

RemoveAll

void RemoveAll()

Remove all values from the vector.

Since 2.4.0

Returns void

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.