pfc_propertydescription


pfcutil.pbl   >   pfc_u_tabpg_dwproperty_services   >   pfc_propertydescription   

Full name pfc_u_tabpg_dwproperty_services.pfc_propertydescription
Access public
Extend of integer
Return value integer
Prototype event integer pfc_propertydescription()

Name Datatype
No Data

Name Datatype
ll_currentrow long

event pfc_propertydescription;call super::pfc_propertydescription;//////////////////////////////////////////////////////////////////////////////
//
//	Event:  pfc_PropertyDescription
//
//	Arguments:	None
//
//	Return:	integer
//	 1 if it succeeds.
// -1 error.
//
//	Description: 
//	Display the appropriate description.
//	
//////////////////////////////////////////////////////////////////////////////
//	
//	Revision History
//
//	Version
//	6.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.
//
//////////////////////////////////////////////////////////////////////////////

long	ll_currentrow

// Get the current row.
ll_currentrow = dw_services.GetRow()

If ll_currentrow > 0 Then
	// Display the appropriate description.
	mle_description.Text = dw_services.Object.servicedescription[ll_currentrow]
Else
	// Blank out the description.
	mle_description.Text = ''
	Return -1
End If

Return 1
end event

     
Name Owner
pfc_u_tabpg_dwproperty_services.dw_services.rowfocuschanged dw_services
pfc_u_tabpg_dwproperty_services.pfc_propertypopulate pfc_u_tabpg_dwproperty_services

     
Name Owner
datawindow.getrow datawindow

     
Full name
pfc_u_tabpg_dwproperty_services
pfc_u_tabpg_dwproperty_services.mle_description

     
Name Scope
No Data