Navigation:  C/C++ Scripting Engine > Classes >

dbStringArray

Previous pageReturn to chapter overviewNext page

Stores an array of character strings.

bar_dot

 

Class Functions:

==============

 

void append( char* value )

Add a char* to the end of the array.

 

void prepend( char* value )

Add a integer to the front of the array.

 

void clear()

Remove all char* stored in the array.

 

int no()

Returns the total count of char* in the array.

 

int find( char* value )

Return the index in the array for the char* "value".  If it cannot find char* float, -1 is returned.

 

int rfind( char* value )

Return the index in the array for the char* "value".  If it cannot find the char*, -1 is returned. Begins search from back-to-front.

 

void insert( int pos, char* value )

Insert float value into array at specified position

 

void remove( int pos )

Remove stored char* at specified position.

 

int index( int pos )

Return char* value at specified position.