Specifications

548
dom.selectAll()
Availability
Dreamweaver 3
Description
Performs a Select All operation.
Note: In most cases this function selects all the content in the active document. In some cases (for example, when
the insertion point is inside a table), it selects only part of the active document. To set the selection to the entire
document, use
dom.setSelection().
Arguments
None.
Returns
Nothing.
dom.selectTable()
Availability
Dreamweaver 3
Description
Selects an entire table.
Arguments
None.
Returns
Nothing.
Enabler
“dom.canSelectTable()” on page 416
dom.setSelectedNode()
Availability
Dreamweaver 3
Description
Sets the selected node. This function is equivalent to calling dom.nodeToOffsets() and passing
the return value to
dom.setSelection().
Arguments
node, {bSelectInside}, {bJumpToNode}
node is a text, comment, or element node in the document.
bSelectInside is a Boolean value that indicates whether to select the innterHTML of the
node. This argument is relevant only if
node is an element node, and it defaults to false if it is
omitted.
bJumpToNode is a Boolean value that indicates whether to scroll the Document window, if
necessary, to make the selection visible. If it is omitted, this argument defaults to
false.