:: com :: sun :: star :: table ::

unpublished constants group CellVertJustify2
Usage Restrictions
not published
Description
specifies how cell contents are aligned vertically.

Constants
STANDARD default alignment is used.  
TOP contents are aligned with the upper edge of the cell.  
CENTER contents are aligned to the vertical middle of the cell.  
BOTTOM contents are aligned to the lower edge of the cell.  
BLOCK contents are justified to the cell height.  
Constants' Details
STANDARD
const long STANDARD = 0;
Description
default alignment is used.
TOP
const long TOP = 1;
Description
contents are aligned with the upper edge of the cell.
CENTER
const long CENTER = 2;
Description
contents are aligned to the vertical middle of the cell.
BOTTOM
const long BOTTOM = 3;
Description
contents are aligned to the lower edge of the cell.
BLOCK
const long BLOCK = 4;
Description
contents are justified to the cell height.
Top of Page