RightText Property
Specifies whether the buttons in a ToolBar control should be right aligned

 

 

  

Syntax:

 

RightText <lValue>

 

Sample:

 

 

      DEFINE TOOLBAR ToolBar_1 FLAT BUTTONSIZE 100,25 BOTTOM RIGHTTEXT IMAGESIZE 25,25

 

            BUTTON Button_1 ;

                  CAPTION '&Undo' ;

                  PICTURE 'button4.bmp' ;

                  ACTION MsgInfo('UnDo Click!')

 

            BUTTON Button_2 ;

                  CAPTION '&Save' ;

                  PICTURE 'button5.bmp' ;

                  ACTION MsgInfo('Save Click!')

 

            BUTTON Button_3 ;

                  CAPTION '&Close' ;

                  PICTURE 'button6.bmp' ;

                  ACTION Form_2.Release

 

      END TOOLBAR