Package | Description |
---|---|
com.hfg.css |
Implementation of CSS concepts to allow CSS content to be created, parsed,
and/or manipulated in code.
|
com.hfg.html |
The HTML classes in this package can be used to construct HTML or XHTML in an object-oriented fashion.
|
com.hfg.html.attribute |
Modifier and Type | Method and Description |
---|---|
static String |
CSS.verticalAlign(VAlign inValue) |
Modifier and Type | Method and Description |
---|---|
IFrame |
IFrame.setAlign(VAlign inValue)
Since an img align attribute allows the normally valign values of 'top'
and 'bottom', this alternate setAlign method takes a VAlign object.
|
Img |
Img.setAlign(VAlign inValue)
Since an img align attribute allows the normally valign values of 'top'
and 'bottom', this alternate setAlign method takes a VAlign object.
|
Col |
Col.setVAlign(VAlign inValue) |
Colgroup |
Colgroup.setVAlign(VAlign inValue) |
TBody |
TBody.setVAlign(VAlign inValue) |
Td |
Td.setVAlign(VAlign inValue) |
TFoot |
TFoot.setVAlign(VAlign inValue) |
Th |
Th.setVAlign(VAlign inValue) |
THead |
THead.setVAlign(VAlign inValue) |
Tr |
Tr.setVAlign(VAlign inValue) |
Modifier and Type | Field and Description |
---|---|
static VAlign |
VAlign.BASELINE |
static VAlign |
VAlign.BOTTOM |
static VAlign |
VAlign.INHERIT |
static VAlign |
VAlign.INITIAL |
static VAlign |
VAlign.MIDDLE |
static VAlign |
VAlign.SUB |
static VAlign |
VAlign.SUPER |
static VAlign |
VAlign.TEXT_BOTTOM |
static VAlign |
VAlign.TEXT_TOP |
static VAlign |
VAlign.TOP |
static VAlign |
VAlign.UNSET |
Modifier and Type | Method and Description |
---|---|
static VAlign |
VAlign.valueOf(String inValue) |
static VAlign[] |
VAlign.values() |
jataylor@hairyfatguy.com