SetTableCellAlignment
Disposição da página
Descrição
Define o alinhamento vertical e horizontal de uma ou mais células
Sintaxe
Delphi
Function TPDFlib.SetTableCellAlignment(TableID, FirstRow, FirstColumn, LastRow, LastColumn, NewCellAlignment: Integer): Integer;
ActiveX
Function PDFlib::SetTableCellAlignment(TableID As Long, FirstRow As Long, FirstColumn As Long, LastRow As Long, LastColumn As Long, NewCellAlignment As Long) As Long
DLL
int DLSetTableCellAlignment(int InstanceID, int TableID, int FirstRow, int FirstColumn, int LastRow, int LastColumn, int NewCellAlignment);
Parâmetros
| TableID | Um TableID devolvido pela função CreateTable |
|---|---|
| FirstRow | O número da primeira linha a definir. A linha superior é a linha número 1 |
| FirstColumn | O número da primeira coluna a definir. A coluna mais à esquerda tem o número 1 |
| LastRow | O número da última linha a definir |
| LastColumn | O número da última coluna a definir |
| NewCellAlignment | 0 = superior esquerda 1 = superior centro 2 = superior direita 3 = centro esquerda 4 = centro 5 = centro direita 6 = inferior esquerda 7 = inferior centro 8 = inferior direita int NewCellAlignment); |