Function FkLabel() Foundation

Determines the identifier for a function key.

Syntax
FkLabel( <nFKey> ) --> cFKeyLabel
Return
Description

The function FkLabel() does not exist within the Xbase++ language. Originally it was part of the dBASE III Plus language and can be easily implemented in Xbase++ with a user-defined function.

Examples
FkLabel()
// Creates label for the nth programmable function key 

FUNCTION FkLabel( nFKey ) 
  RETURN IIf( nFKey <= 48 .AND. nFKey > 0 , ; 
              "F"+LTrim( Str( nFKey ) ), "" ) 
Feedback

If you see anything in the documentation that is not correct, does not match your experience with the particular feature or requires further clarification, please use this form to report a documentation issue.