aMaxI( ) Function

Description:
  The aMaxI() function returns the maximum indice of the array aArray.

Syntax:
  retval = aMaxI ( aArray )

Parameters:
  array: aArray An array to get the maximum indices of.
  variant: retval The maximum indices of the array.

Platforms:
  Windows, DOS, Internet Active Pages



Example:

	local var1, retval     	// Variables								
	var1 = {a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z}	// Search Array
	retval = amaxi( var1 )
	
	println( retval )	// print the results to the screen

  

(c) 2000-2001 by West Coast Web Adventures, Inc., All Rights Reserved