Ccfxstringset::getstring - MACROMEDIA COLDFUSION 4.5-DEVELOPING WEB Develop Manual

Developing web applications with coldfusion
Table of Contents

Advertisement

310

CCFXStringSet::GetString

LPCSTR CCFXStringSet::GetString(int iIndex )
Retrieves the string located at the passed index (note that index values are 1-based).
Returns the string located at the passed index.
iIndex
Index of string to retrieve.
Example
The following example demonstrates using
CCFXStringSet::GetCount
back to the user:
int nNumItems = pStringSet->GetCount() ;
for ( int i=1; i<=nNumItems; i++ )
{
}
to iterate over a string set and write the contents of the list
pRequest->Write( pStringSet->GetString( i ) ) ;
pRequest->Write( "<BR>" ) ;
Developing Web Applications with ColdFusion
along with
GetString

Advertisement

Table of Contents
loading

This manual is also suitable for:

Coldfusion 4.5

Table of Contents