RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
Forms.TBorderIcon Enumeration

TBorderIcons and TBorderIcons specify the buttons that appear on the title bar of a form window.

Pascal
TBorderIcon = (
  biSystemMenu,
  biMinimize,
  biMaximize,
  biHelp
);
C++
enum TBorderIcon {
  biSystemMenu,
  biMinimize,
  biMaximize,
  biHelp
};

TBorderIcons can include any of the following TBorderIcon values:

Value 
Meaning 
biSystemMenu  
The form has a Control menu (also known as a System menu).  
biMinimize  
The form has a Minimize button  
biMinimize  
The form has a Maximize button  
biHelp  
If BorderStyle is bsDialog or biMinimize and biMaximize are excluded, a question mark appears in the form's title bar and when clicked, the cursor changes to crHelp; otherwise, no question mark appears.  

 

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!