RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
HTTPProd.THTMLAlign Enumeration

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

Pascal
THTMLAlign = (
  haDefault,
  haLeft,
  haRight,
  haCenter
);
C++
enum THTMLAlign {
  haDefault,
  haLeft,
  haRight,
  haCenter
};

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.  

 

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!