setEndPoint Method (IHTMLTxtRange)

IHTMLTxtRange::setEndPoint Method

Sets the endpoint of one range based on the endpoint of another range.

Syntax

HRESULT setEndPoint(      BSTR how,      IHTMLTxtRange *SourceRange  );    

Parameters

how
[in] BSTR that specifies the endpoint to transfer using one of the following values.

StartToEnd
Move the start of the TextRange object to the end of the specified SourceRange parameter.
StartToStart
Move the start of the TextRange object to the start of the specified SourceRange parameter.
EndToStart
Move the end of the TextRange object to the start of the specified SourceRange parameter.
EndToEnd
Move the end of the TextRange object to the end of the specified SourceRange parameter.
SourceRange
[in] Pointer to the IHTMLTxtRange interface of the TextRange object from which the source endpoint is to be taken.

Return Value

Returns S_OK if successful, or an error value otherwise.

Remarks

A text range has two endpoints: one at the beginning of the text range and one at the end. An endpoint can also be the position between two characters in an HTML document.

There are four possible endpoint locations in the following HTML.

<BODY><P><B>abc  

The possible endpoint locations are:

  • Before the letter a.
  • Between the letters a and b.
  • Between the letters b and c.
  • After the letter c.

This feature might not be available on platforms other than Microsoft Win32.

In Microsoft Internet Explorer 4.0, an endpoint is relative to text only, not HTML tags.

In Internet Explorer 4.0, an endpoint cannot be established between body and p. Specifying an endpoint between body and p is interpreted as if it occurs before the letter a.

See Also

IHTMLTxtRange::compareEndPoints

引文来源  setEndPoint Method (IHTMLTxtRange)