ITfRange::CompareStart method
The ITfRange::CompareStart method compares the start anchor position of this range of text to an anchor in another range.
Syntax
HRESULT CompareStart( [in] TfEditCookie ec, [in] ITfRange *pWith, [in] TfAnchor aPos, [out] LONG *plResult );
Parameters
- ec [in]
-
Edit cookie obtained from ITfDocumentMgr::CreateContext or ITfEditSession::DoEditSession.
- pWith [in]
-
Pointer to a specified range in which an anchor is to be compared to this range start anchor.
- aPos [in]
-
Enumeration element that indicates which anchor of the specified pWith range to compare to this range start anchor.
Value Meaning - TF_ANCHOR_START
Compare this range start anchor with the specified range start anchor.
- TF_ANCHOR_END
Compare this range start anchor with the specified range end anchor.
- plResult [out]
-
Pointer to the result of the comparison between this range start anchor and the specified pWith range anchor.
Return value
This method can return one of these values.
| Value | Description |
|---|---|
|
The method was successful. |
|
An unspecified error occurred. |
|
One or more parameters are invalid. |
|
The value of the ec parameter is an invalid cookie, or the caller does not have a read-only lock. |
Remarks
This method will never return 0 unless the two anchors are in a single region. If the caller only requires information about whether the two anchors are positioned at the same location, ITfRange::IsEqualStart is more efficient.
Requirements
|
Minimum supported client |
Windows 2000 Professional [desktop apps | Windows Store apps] |
|---|---|
|
Minimum supported server |
Windows 2000 Server [desktop apps | Windows Store apps] |
|
Redistributable |
TSF 1.0 on Windows 2000 Professional |
|
Header |
|
|
IDL |
|
|
DLL |
|
See also
- ITfRange
- Text Stores
- ITfDocumentMgr::CreateContext
- ITfEditSession::DoEditSession
- ITfRange::CompareEnd
- ITfRange::IsEqualStart
- TfAnchor