Web.HTTPProd.THTMLAlign

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

THTMLAlign = (haDefault, haLeft, haRight, haCenter);

C++

enum DECLSPEC_DENUM THTMLAlign : unsigned char { haDefault, haLeft, haRight, haCenter };

Properties

Type Visibility Source Unit Parent
enum public
Web.HTTPProd.pas
Web.HTTPProd.hpp
Web.HTTPProd Web.HTTPProd

Description

THTMLAlign represents horizontal alignment within an HTML document or the cell of an HTML table.

THTMLAlign describes the value of an Align option in an HTML tag. The following table lists the possible values:



Value Meaning

haDefault

The web browser can position the HTML control or text where it wants.

haLeft

Web browsers position the HTML control or text with its left edge on the left edge of the HTML document or HTML table cell in which it appears.

haRight

Web browsers position the HTML control or text with its right edge on the right edge of the HTML document or HTML table cell in which it appears.

haCenter

Web browsers horizontally center the HTML control or text within the HTML document or HTML table cell in which it appears.