ContentsIndexHome
PreviousUpNext
setValue Method

Sets the specified position to the value.

Set the provided position to the value. Applies to element valued data. 

 

virtual void setValue(const ITuple* pos, const IElement* value) = 0;

 

Set the provided position to the value. Applies to string valued data, and element valued data of which the range is not a subset of Integers. 

 

virtual void setValue(const ITuple* pos, const char* value) = 0;

 

Set the provided position to the value. Applies to double valued data. 

 

virtual void setValue(const ITuple* pos, double value) = 0;

 

Set the provided position to the value. Applies to integer and double valued data, and element valued data of which the range is a subset of Integers. 

 

virtual void setValue(const ITuple* pos, int value) = 0;

 

Set the provided position to the value. Applies to element valued data. 

 

virtual void setValue(const Tuple& pos, const IElement* value) = 0;

 

Set the provided position to the value. Applies to string valued data, and element valued data of which the range is not a subset of Integers. 

 

virtual void setValue(const Tuple& pos, const char* value) = 0;

 

Set the provided position to the value. Applies to double valued data. 

 

virtual void setValue(const Tuple& pos, double value) = 0;

 

Set the provided position to the value. Applies to integer and double valued data, and element valued data of which the range is a subset of Integers. 

 

virtual void setValue(const Tuple& pos, int value) = 0;