Difference between revisions of "ISPHONEGAP()"

From Lianjapedia
Jump to: navigation, search
(Created page with "==Purpose== Function which can be used in .rsp pages and/or server-side procedures to determine if the current client is a mobile device ==Syntax== ISPHONEGAP() ==See Also==...")
 
Line 24: Line 24:
 
[[Category:VFP Function Extensions]]
 
[[Category:VFP Function Extensions]]
 
[[Category:Mobile Apps]]
 
[[Category:Mobile Apps]]
 +
[[Category:Lianja v2.0]]

Revision as of 08:13, 4 September 2015

Purpose

Function which can be used in .rsp pages and/or server-side procedures to determine if the current client is a mobile device

Syntax

ISPHONEGAP()

See Also

ISSERVER(), PHONEGAPPLATFORM(), PHONEGAPVERSION()

Description

The ISPHONEGAP() function returns .T. (True) if the current client is a mobile device, otherwise .F. (False).

Example

if isPhoneGap()
   // called from mobile device client
endif