align property
Sets or retrieves a value that indicates the table alignment.
Syntax
HRESULT value = object.put_align( v);HRESULT value = object.get_align(* p);
Property values
Type: BSTR
-
Aligns to the left edge of the available space.
-
Aligns to the center of the available space, which is not necessarily the same as the window.
-
Aligns to the right edge of the available space.
Standards information
- Document Object Model (DOM) Level 1 Specification, Section 2.5.5
- HTML 4.01 Specification, Section 13.7.4 (Deprecated)
Remarks
If the IHTMLIFrameElement::align property is not set on the object, the table is aligned to the left edge of the available space as a block element. If the property is set to left or right, however, the table is aligned as a "floating" object. Successive text and other elements flow to the right of the table if IHTMLIFrameElement::align is set to left, or to the left of the table if IHTMLIFrameElement::align is set to right. For more information, see the IHTMLStyle::styleFloat property.