The Selection object represents any currently selected section of a document.
Sections of a document are typically selected by the user holding down a
mouse button and dragging the mouse, but can also be created by scripts using
the select
method on a
Text Range Object.
Properties
type
The type
property is read-only and can be one of two values
("None" or "Text"). If the user has selected some text and/or other elements
in a document, then the type
property will return "Text", otherwise
if no selection has been made, the type
property will return
"None".
Methods
clear
The clear
method can be used to remove the current text selection
from the document. This is going to prove useful for people wanting to build
WYSIWYG HTML editors based on Internet Explorer 4.0. Coupled
with methods like the execCommand
method (see the
Document Object)
to insert HTML elements, a new breed of editors will start to appear based
entirely on the Internet Explorer 4.0 HTML rendering engine.
createRange
The createRange
method creates a
Text Range object
from the current active selection. This can then be manipulated through the
properties, methods and events of the TextRange object.
empty
The empty
method deselects the current selection, sets the selection
type
to "none", and sets the item property to null. The visual
effect of the empty
method is deselection of the text (i.e.
its highlight is removed) Note : The two methods
will only work in the text section below and at the time of writing, using
the empty
method caused the document to scroll to the top.
For example:
Select your method choice from the radio buttons below, then select any of
this text (left-mouse button and drag) and press the right-mouse button to
|
Events
The Selection Object has no events.
© 1995-1998, Stephen Le Hunte
file: /Techref/language/html/ib/Scripting_Reference/selo.htm, 4KB, , updated: 2019/10/7 17:43, local time: 2024/11/5 15:54,
3.144.39.255:LOG IN ©2024 PLEASE DON'T RIP! THIS SITE CLOSES OCT 28, 2024 SO LONG AND THANKS FOR ALL THE FISH!
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://linistepper.com/Techref/language/html/ib/Scripting_Reference/selo.htm"> The Selection object</A> |
Did you find what you needed? |