Alinha o conteúdo interno do objeto.
Sintaxe
SetContentAlign( < nAlign > )
Parâmetros
Nome | Tipo | Descrição | Obrigatório | Referência |
---|---|---|---|---|
nAlign | numérico | Indica o tipo de alinhamento. Para informações dos tipos disponíveis, consulte a área Observações. | X |
Observações
Os valores disponíveis para o parâmetro são:
Valor | Descrição |
---|---|
-1 | Alinha conteúdo à esquerda. |
0 | Centraliza conteúdo. |
1 | Alinha conteúdo à direita. |
Exemplos
#include "TOTVS.CH" user function tstGet() local oDlglocal oGet1, nGet1:= 0.00 local oGet2, cGet2:="texto" local oGet3, dGet3:= Date() local oBtn1, oBtn2, oBtn3 DEFINE DIALOG oDlg FROM 0,0 TO 500,500 PIXEL @ 10,10 GET oGet1 VAR nGet1 SIZE 100,10 OF oDlg PIXEL PICTURE "@E 999999.99"@ 30,10 GET oGet2 VAR cGet2 SIZE 100,10 OF oDlg PIXEL @ 50,10 GET oGet3 VAR dGet3 SIZE 100,10 OF oDlg PIXEL @ 70,10 BUTTON oBtn1 PROMPT "Align Left" ACTION (SetGtAlign(oGet1,-1),SetGtAlign(oGet2,-1),SetGtAlign(oGet3,-1)) OF oDlg PIXEL@ 90,10 BUTTON oBtn2 PROMPT "Align Center" ACTION (SetGtAlign(oGet1,0),SetGtAlign(oGet2,0),SetGtAlign(oGet3,0)) OF oDlg PIXEL@ 110,10 BUTTON oBtn3 PROMPT "Align Right" ACTION (SetGtAlign(oGet1,1),SetGtAlign(oGet2,1),SetGtAlign(oGet3,1)) OF oDlg PIXEL ACTIVATE DIALOG oDlg CENTEREDreturnfunction SetGtAlign(oGet,nAlign) // Testa build que o método SetContentAlign() está disponível if GetBuild()>="7.00.080806P-20081002" oGet:SetContentAlign(nAlign) endif return
Abrangência
Método disponível para builds da TOTVS Tec superiores a "7.00.080806P - Oct 2 2008 - 11:47:14"
Veja também
Visão Geral
Import HTML Content
Conteúdo das Ferramentas
Tarefas