axlGetSessionViewName
axlGetSessionViewName(g_value) =>t_viewName/ nil
Description
Returns the view name associated with the given session or setup database.
Arguments
Value Returned
|
Name of the view corresponding to the given session name is returned. |
||
Examples
Returns the view name associated with a session by using the name of that session.
session = axlGetWindowSession(<adexl-window-id>)
libName = axlGetSessionViewName(session)
"adexl"
Returns the view name associated with a session by using the handle to database of that session.
x_mainSDB= axlGetMainSetupDB(axlGetWindowSession(hiGetCurrentWindow()))
viewName = axlGetSessionViewName(x_mainSDB)
"adexl"
Related Topics
Return to top