of_setfontfamily


pfcmain.pbl   >   pfc_u_progressbar   >   of_setfontfamily   

Full name pfc_u_progressbar.of_setfontfamily
Access public
Extend of string
Return value string
Prototype public function string of_setfontfamily(fontfamily)

Name Datatype
No Data

Name Datatype
lb_bold boolean
lb_italic boolean
lb_underline boolean
lff_fontfamily fontfamily
lfp_fontpitch fontpitch
li_fontcharset integer
li_fontsize integer
ls_fontface string

public function string of_setfontfamily (fontfamily aff_fontfamily);//////////////////////////////////////////////////////////////////////////////
//
//	Function:	of_SetFontFamily
//
//	Access:		public
//
//	Arguments:	
//	aff_fontfamily	enumerated fontfamily datatype representation Family font 
//		belongs to (eg roman!)
//
//	Returns:		String
//		The output of the Modify command (the error text or "") 
//
//	Description:
//	Sets the font family progress bar text attribute
//
//////////////////////////////////////////////////////////////////////////////
//
//	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.
//
//////////////////////////////////////////////////////////////////////////////

string		ls_fontface
integer		li_fontsize, li_fontcharset
fontfamily	lff_fontfamily
fontpitch	lfp_fontpitch
boolean		lb_bold, lb_italic, lb_underline

setnull(ls_fontface)
setnull(li_fontsize)
setnull(li_fontcharset)
setnull(lff_fontfamily)
setnull(lfp_fontpitch)
setnull(lb_bold)
setnull(lb_italic)
setnull(lb_underline)

return of_setfont(ls_fontface, li_fontsize, li_fontcharset, aff_fontfamily, lfp_fontpitch, lb_bold, &
         lb_italic, lb_underline)

end function

     
Name Owner
No Data

     
Name Owner
systemfunctions.setnull systemfunctions
pfc_u_progressbar.of_setfont pfc_u_progressbar

     
Full name
No Data

     
Name Scope
No Data