rowfocuschanged


pfcdwsrv.pbl   >   pfc_w_filterextended   >   dw_function   >   rowfocuschanged   

Full name pfc_w_filterextended.dw_function.rowfocuschanged
Access public
Extend of
Return value
Prototype event rowfocuschanged()

Name Datatype
No Data

Name Datatype
ls_help string
ls_syntax string

event rowfocuschanged;call super::rowfocuschanged;//////////////////////////////////////////////////////////////////////////////
//
//	Event:  rowfocuschanged
//
//	Description:
//	Update syntax and help for the current function
//
//////////////////////////////////////////////////////////////////////////////
//	
//	Revision History
//
//	Version
//	5.0   Initial version
//
//////////////////////////////////////////////////////////////////////////////
//
//	Copyright © 1996-1997 Sybase, Inc. and its subsidiaries.  All rights reserved.
//	Any distribution of the PowerBuilder Foundation Classes (PFC)
//	source code by other than Sybase, Inc. and its subsidiaries is prohibited.
//
//////////////////////////////////////////////////////////////////////////////

string	ls_syntax
string	ls_help

if currentrow > 0 then
	inv_rowselect.of_RowSelect (currentrow)

	ls_syntax = this.GetItemString (currentrow, "syntax")
	ls_help = this.GetItemString (currentrow, "help")

	st_syntax.text = ls_syntax
	st_help.text = ls_help
end if
end event

     
Name Owner
pfc_w_filterextended.dw_functioncategory.rowfocuschanged dw_functioncategory

     
Name Owner
datawindow.getitemstring datawindow
pfc_n_cst_dwsrv_rowselection.of_rowselect pfc_n_cst_dwsrv_rowselection
pfc_u_dw.rowfocuschanged pfc_u_dw

     
Full name
pfc_u_st
pfc_w_filterextended.tabpg_functions

     
Name Scope
No Data