HTMLTable.property
property (DataWindow object)
Description
Settings for the display of DataWindow data when displayed in HTML
table format. These settings simplify the transfer of data from a
database to an HTML page. They are particularly useful when used to
create HTML pages dynamically.
Obsolete property
HTMLTable.property is obsolete and should not be used, because
the Web DataWindow technology is obsolete.
Applies to
DataWindow objects
Syntax
PowerBuilder dot notation:
|
1 |
dw_control.Object.DataWindow.HTMLTable.property |
Describe and Modify argument:
|
1 |
"DataWindow.HTMLTable.property { = ' value ' }" |
|
Parameter |
Description |
|---|---|
|
property |
A property for a DataWindow to be displayed in HTML |
|
value |
The value to be assigned to the property. Value can |
|
Property for HTMLTable |
Value |
|---|---|
|
Border |
(exp) Border attribute for the HTMLTable element. |
|
CellPadding |
(exp) CellPadding attribute for the HTMLTable |
|
CellSpacing |
(exp) CellSpacing attribute for the HTMLTable |
|
GenerateCSS |
(exp) Controls whether the DataWindow HTMLTable |
|
NoWrap |
(exp) NoWrap attribute for the HTMLTable element. |
|
StyleSheet |
(exp) HTML cascading style sheet generated for the |
|
Width |
Width attribute for the HTMLTable element. The |
Usage
In the painter
Set the value using the Properties view, HTML Table tab.
Examples
|
1 2 3 |
dw1.Object.DataWindow.HTMLTable.Border = "2" setting = dw1.Describe ("DataWindow.HTMLTable.StyleSheet") dw1.Modify("DataWindow.HTMLTable.NoWrap = 'yes'") |