TPanel
Posted: Mon Sep 08, 2014 7:02 pm
Es posible que la definicion del comando sea errónea? (Fivewin.ch)
Ahora mismo es:
y debería ser
según la definicion de la clase
Ahora mismo es:
Code: Select all
#xcommand @ <nRow>, <nCol> PANEL [ <oPnl> ] ;
[ SIZE <nWidth>, <nHeight> ] ;
[ <of: OF, WINDOW, DIALOG > <oWnd> ] ;
[ <design: DESIGN> ] ;
=> ;
[ <oPnl> := ] TPanel():New( <nRow>, <nCol>, <nWidth> + <nCol> - 1,;
<nHeight> + <nRow> - 1, <oWnd>, <.design.> )
Code: Select all
#xcommand @ <nRow>, <nCol> PANEL [ <oPnl> ] ;
[ SIZE <nWidth>, <nHeight> ] ;
[ <of: OF, WINDOW, DIALOG > <oWnd> ] ;
[ <design: DESIGN> ] ;
=> ;
[ <oPnl> := ] TPanel():New( <nRow>, <nCol>, <nHeight> + <nRow> - 1,;
<nWidth> + <nCol> - 1, <oWnd>, <.design.> )
Code: Select all
METHOD New( nTop, nLeft, nBottom, nRight, oWnd ) CONSTRUCTOR