of_setdeletestyle


pfcdwsrv.pbl   >   pfc_n_cst_dwsrv_linkage   >   of_setdeletestyle   

Full name pfc_n_cst_dwsrv_linkage.of_setdeletestyle
Access public
Extend of integer
Return value integer
Prototype public function integer of_setdeletestyle(integer)

Name Datatype
No Data

Name Datatype
No Data

public function integer of_setdeletestyle (integer ai_style);//////////////////////////////////////////////////////////////////////////////
//
//	Function:  		of_SetDeleteStyle
//
//	Access:    		Public
//
//	Arguments:
//   ai_style:	The Delete style.
//					DEFAULT 
//					DELETE_ROWS
//					DISCARD_ROWS
//
//	Returns:   		Integer
//	1 if it succeeds and -1 if an error occurs.
//
//	Description:  
//	Set the Delete Style.
//	
//////////////////////////////////////////////////////////////////////////////
//
//	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.
//
//////////////////////////////////////////////////////////////////////////////

// Validate the argument.
CHOOSE CASE ai_style
	CASE DEFAULT, DELETE_ROWS, DISCARD_ROWS
		// Good style.
	CASE ELSE
		Return -1
END CHOOSE

// Set the delete style.
ii_deletestyle = ai_style
Return 1
end function

     
Name Owner
pfc_u_tabpg_dwproperty_srvlinkage2.pfc_propertyapply pfc_u_tabpg_dwproperty_srvlinkage2

     
Name Owner
No Data

     
Full name
No Data

     
Name Scope
No Data