of_setfontsize


pfcmain.pbl   >   pfc_u_progressbar   >   of_setfontsize   

Full name pfc_u_progressbar.of_setfontsize
Access public
Extend of string
Return value string
Prototype public function string of_setfontsize(integer)

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_setfontsize (integer ai_fontsize);//////////////////////////////////////////////////////////////////////////////
//
//	Function:	of_SetFontSize
//
//	Access:		public
//
//	Arguments:	
//	ai_fontsize	size the progress bar text should display in
//
//	Returns:		String
//		The output of the Modify command (the error text or "") 
//
//	Description:
//	Sets the progress bar text font size
//
//////////////////////////////////////////////////////////////////////////////
//
//	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, ai_fontsize, li_fontcharset, lff_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