Árvore de páginas

Versões comparadas

Chave

  • Esta linha foi adicionada.
  • Esta linha foi removida.
  • A formatação mudou.
Composition Setup
import.css=/download/attachments/6062824/tecnologia.css

Pagetitle
Classe TPanel
Classe TPanel

...

Inclusão de trecho
Classe TPanel - Construtores
Classe TPanel - Construtores
nopaneltrue

Métodos

Inclusão de trecho
Classe TPanel - Métodos
Classe TPanel - Métodos
nopaneltrue

Exemplos

Bloco de código
languagecpp
themeEclipse
linenumberstrue
collapsefalse
 #include "TOTVS.CH"

 User Function TPanel()
  DEFINE DIALOG oDlg TITLE "Exemplo TPanel" FROM 180,180 TO 550,700 PIXEL
   // TFont
   oTFont := TFont():New('Courier new',,16,.T.)
    
   // Usando o método New
   oPanel:= tPanel():New(01,01,"Teste",oDlg,oTFont,.T.,,CLR_YELLOW,CLR_BLUE,100,100)
    
   // Usando o método Create
   oPanel:= tPanel():Create(oDlg,01,102,"Teste",oTFont,.F.,,CLR_YELLOW,CLR_BLUE,100,100)
  ACTIVATE DIALOG oDlg CENTERED
 Return

...