PspResource (Object)

Represents the PspResource.
Role: It is used to get application resources.

Methods


Func GetResourcePath( iResourceName) As
Returns the path value defined for a resource.
Parameters:
iResourceName
Resource Name
Returns:
Resource Path
Example:
 
 Dim objThisIntf As PspResource
 Dim strResourcePath As String
 Dim iResourceName As String 
 
  ...
 strResourcePath = objThisIntf.GetResourcePath (iResourceName)
 
Func GetResourceValue( iResourceName) As
Returns the value defined for a resource.
Parameters:
iResourceName
Resource Name
Returns:
Resource Value
Example:
 
 Dim objThisIntf As PspResource
 Dim strResourceVal As String
  ...
 strResourceVal = objThisIntf.GetResourceValue (iResourceName)